From e5cea6fdc560f0808da2786f397048f4b0058fcb Mon Sep 17 00:00:00 2001 From: Mike Gorchak Date: Tue, 28 Apr 2009 04:41:25 +0000 Subject: [PATCH] Default video mode has been changed from 320x200 to 640x480, since fullscreen 320x200 is often unavailable. --- test/testcursor.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/testcursor.c b/test/testcursor.c index b2b41024c..dff54dc44 100644 --- a/test/testcursor.c +++ b/test/testcursor.c @@ -156,7 +156,7 @@ main(int argc, char *argv[]) return (1); } - screen = SDL_SetVideoMode(320, 200, 8, SDL_ANYFORMAT); + screen = SDL_SetVideoMode(640, 480, 8, SDL_ANYFORMAT); if (screen == NULL) { fprintf(stderr, "Couldn't initialize video mode: %s\n", SDL_GetError());