summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend
diff options
context:
space:
mode:
author npwoods <npwoods@mess.org>2019-07-21 15:19:38 -0400
committer npwoods <npwoods@mess.org>2019-07-21 15:53:56 -0400
commitcd42885b174c75c41658d3f752eff3208645d995 (patch)
tree2c735c9bf88f207e4b33538ee50806b40e7dddc3 /src/frontend
parent5733eb5488409aaf9967b39c7c23468679496d9e (diff)
Created a -skip_mandatory_fileman option
Diffstat (limited to 'src/frontend')
-rw-r--r--src/frontend/mame/ui/ui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/ui/ui.cpp b/src/frontend/mame/ui/ui.cpp
index 867a7b8bbf8..e3d48c13be1 100644
--- a/src/frontend/mame/ui/ui.cpp
+++ b/src/frontend/mame/ui/ui.cpp
@@ -283,7 +283,7 @@ void mame_ui_manager::display_startup_screens(bool first_time)
const int maxstate = 3;
int str = machine().options().seconds_to_run();
bool show_gameinfo = !machine().options().skip_gameinfo();
- bool show_warnings = true, show_mandatory_fileman = true;
+ bool show_warnings = true, show_mandatory_fileman = !machine().options().skip_mandatory_fileman();
bool video_none = strcmp(downcast<osd_options &>(machine().options()).video(), "none") == 0;
// disable everything if we are using -str for 300 or fewer seconds, or if we're the empty driver,