From 4b68076dc4b5733e3b9d4c9985bd2b3d7cb3eb0c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Tobias=20Gl=C3=A4=C3=9Fer?= Date: Sun, 18 Jan 2004 11:50:28 +0000 Subject: [PATCH] Fixed little bug, that prevented you from enabling fullscreen through the command line. SVN-Revision: 95 --- src/setup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/setup.c b/src/setup.c index 985e0c8dc..31bf69718 100644 --- a/src/setup.c +++ b/src/setup.c @@ -454,7 +454,7 @@ void parseargs(int argc, char * argv[]) use_fullscreen = YES; } - if (strcmp(argv[i], "--opengl") == 0 || + else if (strcmp(argv[i], "--opengl") == 0 || strcmp(argv[i], "-g") == 0) { /* Use full screen: */ -- 2.11.0