diff options
Diffstat (limited to 'backends')
-rw-r--r-- | backends/sdl/sdl-common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/sdl/sdl-common.cpp b/backends/sdl/sdl-common.cpp index 32a885fecf..5f0b58e561 100644 --- a/backends/sdl/sdl-common.cpp +++ b/backends/sdl/sdl-common.cpp @@ -406,7 +406,7 @@ void OSystem_SDL_Common::warp_mouse(int x, int y) { if (_full_screen) SDL_ShowCursor(SDL_ENABLE); SDL_WarpMouse(x * _scaleFactor, y * _scaleFactor); if (_full_screen) SDL_ShowCursor(SDL_DISABLE); - set_mouse_pos(x, y); +// set_mouse_pos(x, y); } void OSystem_SDL_Common::set_mouse_cursor(const byte *buf, uint w, uint h, int hotspot_x, int hotspot_y) { |