summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui/moptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/ui/moptions.h')
-rw-r--r--src/frontend/mame/ui/moptions.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/frontend/mame/ui/moptions.h b/src/frontend/mame/ui/moptions.h
index ddfa3971c3b..67ce3eb63f9 100644
--- a/src/frontend/mame/ui/moptions.h
+++ b/src/frontend/mame/ui/moptions.h
@@ -38,6 +38,7 @@
#define OPTION_UI_PATH "ui_path"
// core misc options
+#define OPTION_SKIP_WARNINGS "skip_warnings"
#define OPTION_REMEMBER_LAST "remember_last"
#define OPTION_ENLARGE_SNAPS "enlarge_snaps"
#define OPTION_FORCED4X3 "forced4x3"
@@ -102,6 +103,7 @@ public:
const char *ui_path() const { return value(OPTION_UI_PATH); }
// Misc options
+ bool skip_warnings() const { return bool_value(OPTION_SKIP_WARNINGS); }
bool remember_last() const { return bool_value(OPTION_REMEMBER_LAST); }
bool enlarge_snaps() const { return bool_value(OPTION_ENLARGE_SNAPS); }
bool forced_4x3_snapshot() const { return bool_value(OPTION_FORCED4X3); }