Mercurial > sdl-ios-xcode
changeset 4270:6b7f9089105e SDL-1.2
Fixed VC2005 compiler warnings
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 30 Sep 2009 20:38:28 +0000 |
parents | 60db3d01cb3a |
children | c57d816eb9c5 |
files | src/video/windib/SDL_dibevents.c |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/video/windib/SDL_dibevents.c Wed Sep 30 04:49:57 2009 +0000 +++ b/src/video/windib/SDL_dibevents.c Wed Sep 30 20:38:28 2009 +0000 @@ -341,11 +341,11 @@ center.y = (SDL_VideoSurface->h/2); ClientToScreen(SDL_Window, ¢er); - mouse.x -= (Sint16)center.x; - mouse.y -= (Sint16)center.y; + mouse.x -= center.x; + mouse.y -= center.y; if ( mouse.x || mouse.y ) { SetCursorPos(center.x, center.y); - posted = SDL_PrivateMouseMotion(0, 1, mouse.x, mouse.y); + posted = SDL_PrivateMouseMotion(0, 1, (Sint16)mouse.x, (Sint16)mouse.y); } } else if ( SDL_GetAppState() & SDL_APPMOUSEFOCUS ) { ScreenToClient(SDL_Window, &mouse); @@ -353,7 +353,7 @@ if (SDL_VideoSurface && this->hidden->gapiInfo) GapiTransform(this->hidden->gapiInfo, &mouse.x, &mouse.y); #endif - posted = SDL_PrivateMouseMotion(0, 0, mouse.x, mouse.y); + posted = SDL_PrivateMouseMotion(0, 0, (Sint16)mouse.x, (Sint16)mouse.y); } }