a CL option to disable all start screens

This commit is contained in:
Zeno Rogue 2018-02-12 16:20:31 +01:00
parent f0bb13e17c
commit 01209bbd12
1 changed files with 5 additions and 0 deletions

View File

@ -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);
}