Commit d01b7672 authored by Mike Gorchak's avatar Mike Gorchak

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

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
parent cd61a12a
...@@ -156,7 +156,7 @@ main(int argc, char *argv[]) ...@@ -156,7 +156,7 @@ main(int argc, char *argv[])
return (1); return (1);
} }
screen = SDL_SetVideoMode(320, 200, 8, SDL_ANYFORMAT); screen = SDL_SetVideoMode(640, 480, 8, SDL_ANYFORMAT);
if (screen == NULL) { if (screen == NULL) {
fprintf(stderr, "Couldn't initialize video mode: %s\n", fprintf(stderr, "Couldn't initialize video mode: %s\n",
SDL_GetError()); SDL_GetError());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment