diff options
Diffstat (limited to 'Source/Support.cpp')
| -rw-r--r-- | Source/Support.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/Support.cpp b/Source/Support.cpp index 9fcf2be..0c07de2 100644 --- a/Source/Support.cpp +++ b/Source/Support.cpp @@ -40,8 +40,9 @@ void InitMouse() void MoveMouse(int xcoord, int ycoord, Point *mouseloc) { - SDL_WarpMouse(xcoord, ycoord); - SDL_PumpEvents(); + /* mouse warp is annoying when we can just grab the mouse */ +// SDL_WarpMouse(xcoord, ycoord); +// SDL_PumpEvents(); GetMouse(mouseloc); } |
