Skip to content
Snippets Groups Projects
Commit 4e2a010b authored by deuce's avatar deuce
Browse files

The default SDL command-line option now specifies windowed, not full-screen.

This matches the overlay mode selection.
parent 26c7ade6
No related branches found
No related tags found
No related merge requests found
......@@ -1391,12 +1391,12 @@ int main(int argc, char **argv)
case 'S':
switch(toupper(argv[i][3])) {
case 0:
case 'F':
ciolib_mode=CIOLIB_MODE_SDL_FULLSCREEN;
break;
case 'W':
ciolib_mode=CIOLIB_MODE_SDL;
break;
case 'F':
ciolib_mode=CIOLIB_MODE_SDL_FULLSCREEN;
break;
}
break;
case 'O':
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment