summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/moptions.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/ui/moptions.h')
-rw-r--r--src/emu/ui/moptions.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/emu/ui/moptions.h b/src/emu/ui/moptions.h
index e3c649111d9..3b1ab8948c0 100644
--- a/src/emu/ui/moptions.h
+++ b/src/emu/ui/moptions.h
@@ -70,6 +70,12 @@
#define OPTION_UI_DIPSW_COLOR "ui_dipsw_color"
#define OPTION_UI_SLIDER_COLOR "ui_slider_color"
+#define OPTION_UI_FONT "uifont"
+#define OPTION_UI_CONFIRM_QUIT "confirm_quit"
+#define OPTION_UI_MOUSE "ui_mouse"
+#define OPTION_UI_SKIP_GAMEINFO "skip_gameinfo"
+
+
class ui_options : public core_options
{
public:
@@ -131,6 +137,10 @@ public:
const char *ui_dipsw_color() const { return value(OPTION_UI_DIPSW_COLOR); }
const char *ui_slider_color() const { return value(OPTION_UI_SLIDER_COLOR); }
+ bool skip_gameinfo() const { return bool_value(OPTION_UI_SKIP_GAMEINFO); }
+ const char *ui_font() const { return value(OPTION_UI_FONT); }
+ bool confirm_quit() const { return bool_value(OPTION_UI_CONFIRM_QUIT); }
+ bool ui_mouse() const { return bool_value(OPTION_UI_MOUSE); }
private:
static const options_entry s_option_entries[];
};