Mercurial > sdl-ios-xcode
changeset 4238:cbe5222d051a SDL-1.2
Fixed bug #803
Andrey 2009-09-21 19:14:43 PDT
gapi->hiresFix depends on the parameters GetSystemMetrics (SM_CXSCREEN) and
GetSystemMetrics (SM_CXSCREEN).
After the "Open GAPI display" they are changing.
Small patch fixed it.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 23 Sep 2009 07:01:50 +0000 |
parents | 0adda8ff43ef |
children | 3d467ee2af5e |
files | src/video/gapi/SDL_gapivideo.c src/video/windib/SDL_dibevents.c |
diffstat | 2 files changed, 12 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/video/gapi/SDL_gapivideo.c Wed Sep 23 06:57:12 2009 +0000 +++ b/src/video/gapi/SDL_gapivideo.c Wed Sep 23 07:01:50 2009 +0000 @@ -776,9 +776,14 @@ */ WIN_FlushMessageQueue(); - /* Open GAPI display */ + /* Open GAPI display */ if( !gapi->useVga && gapi->useGXOpenDisplay && !gapi->alreadyGXOpened ) { +#if REPORT_VIDEO_INFO + printf("system display width (orig): %d\n", GetSystemMetrics(SM_CXSCREEN)); + printf("system display height (orig): %d\n", GetSystemMetrics(SM_CYSCREEN)); +#endif + gapi->hiresFix = (width > GetSystemMetrics(SM_CXSCREEN)) || (height > GetSystemMetrics(SM_CYSCREEN)); gapi->alreadyGXOpened = 1; if( !gapi->gxFunc.GXOpenDisplay(SDL_Window, GX_FULLSCREEN) ) {
--- a/src/video/windib/SDL_dibevents.c Wed Sep 23 06:57:12 2009 +0000 +++ b/src/video/windib/SDL_dibevents.c Wed Sep 23 07:01:50 2009 +0000 @@ -92,6 +92,12 @@ Sint16 rotatedX; Sint16 rotatedY; + if(gapiInfo->hiresFix) + { + *x *= 2; + *y *= 2; + } + if(gapiInfo->userOrientation == SDL_ORIENTATION_UP && gapiInfo->gapiOrientation == SDL_ORIENTATION_RIGHT) {