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

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403591
This commit is contained in:
Mike Gorchak 2009-04-28 04:41:25 +00:00
parent cd61a12a39
commit d01b767241

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