diff --git a/include/control.h b/include/control.h index f99ababd8..fcd5e54d4 100644 --- a/include/control.h +++ b/include/control.h @@ -87,7 +87,7 @@ public: opt_printconf = false; opt_noautoexec = false; opt_securemode = false; - opt_fastlaunch = false; + opt_fastlaunch = true; opt_fullscreen = false; opt_showcycles = false; opt_earlydebug = false; diff --git a/src/gui/sdlmain.cpp b/src/gui/sdlmain.cpp index a54b9a3e2..b25f865ee 100644 --- a/src/gui/sdlmain.cpp +++ b/src/gui/sdlmain.cpp @@ -6953,7 +6953,7 @@ bool DOSBOX_parse_argv() { fprintf(stderr," -set
Set the config option (overriding the config file).\n"); fprintf(stderr," Make sure to surround the string in quotes to cover spaces.\n"); fprintf(stderr," -time-limit Kill the emulator after 'n' seconds\n"); - fprintf(stderr," -fastlaunch Fast launch mode (skip the BIOS logo and welcome banner)\n"); + fprintf(stderr," -launchlogo Show launch logo (show the launch logo and welcome banner)\n"); #if C_DEBUG fprintf(stderr," -helpdebug Show debug-related options\n"); #endif @@ -7074,8 +7074,8 @@ bool DOSBOX_parse_argv() { else if (optname == "fastbioslogo") { control->opt_fastbioslogo = true; } - else if (optname == "fastlaunch") { - control->opt_fastlaunch = true; + else if (optname == "launchlogo") { + control->opt_fastlaunch = false; } else if (optname == "conf") { if (!control->cmdline->NextOptArgv(tmp)) return false;