# HG changeset patch # User Mike Gorchak # Date 1240893685 0 # Node ID 14d32495a5024a83f2a06fcfa8bd1539c2c82233 # Parent e6c21c14ce3af38ca38309fe2383c24ddc66411d Default video mode has been changed from 320x200 to 640x480, since fullscreen 320x200 is often unavailable. diff -r e6c21c14ce3a -r 14d32495a502 test/testcursor.c --- 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());