From 01209bbd12db87b9ddd2dede9cb2465b171b5a92 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 12 Feb 2018 16:20:31 +0100 Subject: [PATCH] a CL option to disable all start screens --- commandline.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/commandline.cpp b/commandline.cpp index 2c4796cc..5950ab7f 100644 --- a/commandline.cpp +++ b/commandline.cpp @@ -108,6 +108,11 @@ int arg::readCommon() { else if(argis("-nohud")) { nohud = true; } + else if(argis("-noscr")) { + PHASE(3); + popScreenAll(); + showstartmenu = false; + } else if(argis("-back")) { shift(); backcolor = strtol(args(), NULL, 16); }