diff options
author | Max Horn | 2003-01-09 16:57:09 +0000 |
---|---|---|
committer | Max Horn | 2003-01-09 16:57:09 +0000 |
commit | 1934269872eea22700803ba3e9d53f922a35eb31 (patch) | |
tree | 1d3bb7827a19a22c8d5927c45d0b23c00b0f14af /backends/sdl/sdl-common.cpp | |
parent | 80fde145481e56f82d589b51f9105152ee2f7dcf (diff) | |
download | scummvm-rg350-1934269872eea22700803ba3e9d53f922a35eb31.tar.gz scummvm-rg350-1934269872eea22700803ba3e9d53f922a35eb31.tar.bz2 scummvm-rg350-1934269872eea22700803ba3e9d53f922a35eb31.zip |
yet another warp mouse change, now it works on OS X, but will it work on Linux/Windows?
svn-id: r6370
Diffstat (limited to 'backends/sdl/sdl-common.cpp')
-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) { |