summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2019-07-22 11:12:45 -0400
committer GitHub <noreply@github.com>2019-07-22 11:12:45 -0400
commitcf3c099ef92dea00a106080c0665c44e46f4c73e (patch)
tree3d525a7ab20e63ca5937dbb609342d40abdecfd0 /src/frontend
parent790d2456d59c0da944880e27e014ce2fd9554b08 (diff)
parentcd42885b174c75c41658d3f752eff3208645d995 (diff)
Merge pull request #5372 from npwoods/skip_mandatory_fileman
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,