mirror of
https://github.com/yawut/SDL.git
synced 2026-04-24 23:37:09 -05:00
Default video mode has been changed from 320x200 to 640x480, since fullscreen 320x200 is often unavailable.
This commit is contained in:
parent
4652a067c9
commit
d6599a968a
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user