mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 19:20:46 +00:00
Ignore dosbox specific command line options
This commit is contained in:
parent
5a93d301b6
commit
4527da61a2
1 changed files with 5 additions and 0 deletions
|
@ -1015,6 +1015,9 @@ SWITCH switches[] = {
|
||||||
{ "h", 40, 1 },
|
{ "h", 40, 1 },
|
||||||
{ "mh", 41, 1 },
|
{ "mh", 41, 1 },
|
||||||
{ "j", 42, 1 },
|
{ "j", 42, 1 },
|
||||||
|
{ "c", 43, 1 },
|
||||||
|
{ "conf", 43, 1 },
|
||||||
|
{ "noconsole", 43, 0 },
|
||||||
{ NULL, 0, 0 }
|
{ NULL, 0, 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1335,6 +1338,8 @@ void ParseOptions(void)
|
||||||
ThrowError("Missing argument");
|
ThrowError("Missing argument");
|
||||||
G_AddPath(OptArgv[0]);
|
G_AddPath(OptArgv[0]);
|
||||||
break;
|
break;
|
||||||
|
case 43: // conf, noconsole
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
#if 0
|
#if 0
|
||||||
|
|
Loading…
Reference in a new issue