Default video mode has been changed from 320x200 to 640x480, since fullscreen 320x200 is often unavailable.

This commit is contained in:
Mike Gorchak 2009-04-28 04:41:25 +00:00
parent 4652a067c9
commit d6599a968a

View File

@ -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());