mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
- skip -game in Blood menu
This commit is contained in:
parent
13115ad217
commit
48a5dfe9a6
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue