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