aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sdl.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sdl.c b/sdl.c
index d8ec2c6a33..335ef8849a 100644
--- a/sdl.c
+++ b/sdl.c
@@ -195,10 +195,12 @@ static void sdl_send_mouse_event(void)
buttons |= MOUSE_EVENT_MBUTTON;
/* XXX: test wheel */
dz = 0;
+#ifdef SDL_BUTTON_WHEELUP
if (state & SDL_BUTTON(SDL_BUTTON_WHEELUP))
dz--;
if (state & SDL_BUTTON(SDL_BUTTON_WHEELDOWN))
dz++;
+#endif
kbd_mouse_event(dx, dy, dz, buttons);
}