diff options
Diffstat (limited to 'sdl.cpp')
-rw-r--r-- | sdl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -938,8 +938,8 @@ void OSystem_SDL::draw_mouse() { if (SDL_LockSurface(sdl_screen) == -1) error("SDL_LockSurface failed: %s.\n", SDL_GetError()); - const int ydraw = _ms_cur.y + _current_shake_pos - _ms_hotspot_x; - const int xdraw = _ms_cur.x - _ms_hotspot_y; + const int ydraw = _ms_cur.y + _current_shake_pos - _ms_hotspot_y; + const int xdraw = _ms_cur.x - _ms_hotspot_x; const int w = _ms_cur.w; const int h = _ms_cur.h; int x,y; |