Ignore dosbox specific command line options

This commit is contained in:
nukeykt 2019-09-15 18:07:09 +09:00 committed by Christoph Oelckers
parent 5a93d301b6
commit 4527da61a2

View file

@ -1015,6 +1015,9 @@ SWITCH switches[] = {
{ "h", 40, 1 },
{ "mh", 41, 1 },
{ "j", 42, 1 },
{ "c", 43, 1 },
{ "conf", 43, 1 },
{ "noconsole", 43, 0 },
{ NULL, 0, 0 }
};
@ -1335,6 +1338,8 @@ void ParseOptions(void)
ThrowError("Missing argument");
G_AddPath(OptArgv[0]);
break;
case 43: // conf, noconsole
break;
}
}
#if 0