changeset 3111:14d32495a502

Default video mode has been changed from 320x200 to 640x480, since fullscreen 320x200 is often unavailable.
author Mike Gorchak <lestat@i.com.ua>
date Tue, 28 Apr 2009 04:41:25 +0000
parents e6c21c14ce3a
children 8f3fd508734b
files test/testcursor.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/test/testcursor.c	Tue Apr 28 04:38:51 2009 +0000
+++ b/test/testcursor.c	Tue Apr 28 04:41:25 2009 +0000
@@ -156,7 +156,7 @@
         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());