summarylogtreecommitdiffstats
path: root/default-to-fast-bios.patch
blob: c51748ef902bcad0b908cf582a2002cda7f19220 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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 <section property=value>           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 <n>                         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;