- skip -game in Blood menu

This commit is contained in:
Christoph Oelckers 2019-10-08 01:38:01 +02:00
parent 13115ad217
commit 48a5dfe9a6

View file

@ -1107,6 +1107,7 @@ SWITCH switches[] = {
{ "j", 42, 1 }, { "j", 42, 1 },
{ "c", 43, 1 }, { "c", 43, 1 },
{ "conf", 43, 1 }, { "conf", 43, 1 },
{ "game", 44, 1 },
{ "noconsole", 43, 0 }, { "noconsole", 43, 0 },
{ NULL, 0, 0 } { NULL, 0, 0 }
}; };
@ -1431,6 +1432,7 @@ void ParseOptions(void)
G_AddPath(OptArgv[0]); G_AddPath(OptArgv[0]);
break; break;
case 43: // conf, noconsole case 43: // conf, noconsole
case 44:
break; break;
} }
} }