From 4527da61a2002c56eecdacdc924dacd86c787920 Mon Sep 17 00:00:00 2001 From: nukeykt Date: Sun, 15 Sep 2019 18:07:09 +0900 Subject: [PATCH] Ignore dosbox specific command line options --- source/blood/src/blood.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/blood/src/blood.cpp b/source/blood/src/blood.cpp index 9a2bb2844..a5a8cfb3c 100644 --- a/source/blood/src/blood.cpp +++ b/source/blood/src/blood.cpp @@ -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