Mercurial > sdl-ios-xcode
diff test/testime.c @ 5249:762e40fb8e28
Be explicit about what display you're querying. The default display is 0.
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Thu, 10 Feb 2011 12:14:37 -0800 |
parents | 1435f8a6425c |
children |
line wrap: on
line diff
--- a/test/testime.c Thu Feb 10 11:39:08 2011 -0800 +++ b/test/testime.c Thu Feb 10 12:14:37 2011 -0800 @@ -122,12 +122,9 @@ if (fullscreen) { - SDL_DisplayMode mode; - SDL_GetDesktopDisplayMode(&mode); - - width = mode.w; - height = mode.h; - fprintf(stderr, "%dx%d\n", width, height); + /* Use the desktop mode */ + width = 0; + height = 0; flags |= SDL_FULLSCREEN; } @@ -375,3 +372,5 @@ CleanupVideo(); return 0; } + +/* vi: set ts=4 sw=4 expandtab: */