summaryrefslogtreecommitdiff
path: root/setup/mouse.c
diff options
context:
space:
mode:
Diffstat (limited to 'setup/mouse.c')
-rw-r--r--setup/mouse.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup/mouse.c b/setup/mouse.c
index bafccc87..147c6938 100644
--- a/setup/mouse.c
+++ b/setup/mouse.c
@@ -22,6 +22,7 @@
#include <stdlib.h>
#include "textscreen.h"
+#include "doomtype.h"
#include "execute.h"
#include "txt_mouseinput.h"
@@ -64,7 +65,7 @@ static void MouseSetCallback(TXT_UNCAST_ARG(widget), TXT_UNCAST_ARG(variable))
// Check if the same mouse button is used for a different action
// If so, set the other action(s) to -1 (unset)
- for (i=0; i<sizeof(all_mouse_buttons) / sizeof(*all_mouse_buttons); ++i)
+ for (i=0; i<arrlen(all_mouse_buttons); ++i)
{
if (*all_mouse_buttons[i] == *variable
&& all_mouse_buttons[i] != variable)