# HG changeset patch # User Mike Gorchak # Date 1240893801 0 # Node ID 8f3fd508734b7b62814a03d6e0746fc8aa4fc027 # Parent 14d32495a5024a83f2a06fcfa8bd1539c2c82233 New last cursor position must rely on the clamped coordinates. diff -r 14d32495a502 -r 8f3fd508734b src/events/SDL_mouse.c --- a/src/events/SDL_mouse.c Tue Apr 28 04:41:25 2009 +0000 +++ b/src/events/SDL_mouse.c Tue Apr 28 04:43:21 2009 +0000 @@ -473,8 +473,8 @@ event.motion.cursor = mouse->current_end; posted = (SDL_PushEvent(&event) > 0); } - mouse->last_x = x; - mouse->last_y = y; + mouse->last_x = mouse->x; + mouse->last_y = mouse->y; return posted; }