From 5bc70ab078918214ed8337251a815381e75a64e4 Mon Sep 17 00:00:00 2001 From: Patrice Mandin Date: Tue, 3 Aug 2004 15:40:18 +0000 Subject: [PATCH] Absolute mouse position was given as relative movement to SDL --- src/video/gem/SDL_gemevents.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/gem/SDL_gemevents.c b/src/video/gem/SDL_gemevents.c index 595d083c8..2f3f606be 100644 --- a/src/video/gem/SDL_gemevents.c +++ b/src/video/gem/SDL_gemevents.c @@ -302,7 +302,7 @@ static void do_mouse(_THIS, short mx, short my, short mb, short ks) SDL_PrivateMouseMotion(0, 1, SDL_AtariXbios_mousex, SDL_AtariXbios_mousey); SDL_AtariXbios_mousex = SDL_AtariXbios_mousey = 0; } else { - SDL_PrivateMouseMotion(0, 1, mx, my); + SDL_PrivateMouseMotion(0, 0, mx, my); } prevmousex = mx; prevmousey = my;