summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/moptions.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-02-05 15:17:51 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-02-05 15:17:51 +0100
commit6fb757d6a6ee1628c49834c884d682bb43211ffd (patch)
treec9fea3e49c11df6282ef022c91396985a7bbbe4e /src/emu/ui/moptions.cpp
parentd0162765cdd23c2cb015118b75c87689a839de40 (diff)
move some options to ui.ini (nw)
Diffstat (limited to 'src/emu/ui/moptions.cpp')
-rw-r--r--src/emu/ui/moptions.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/emu/ui/moptions.cpp b/src/emu/ui/moptions.cpp
index 5dfdfde43c3..dd4897749fc 100644
--- a/src/emu/ui/moptions.cpp
+++ b/src/emu/ui/moptions.cpp
@@ -52,9 +52,13 @@ const options_entry ui_options::s_option_entries[] =
{ OPTION_LAST_USED_FILTER, "", OPTION_STRING, "latest used filter" },
{ OPTION_LAST_USED_MACHINE, "", OPTION_STRING, "latest used machine" },
{ OPTION_INFO_AUTO_AUDIT, "0", OPTION_BOOLEAN, "enable auto audit in the general info panel" },
+ { OPTION_UI_SKIP_GAMEINFO, "0", OPTION_BOOLEAN, "skip displaying the information screen at startup" },
+ { OPTION_UI_FONT, "default", OPTION_STRING, "specify a font to use" },
+ { OPTION_UI_CONFIRM_QUIT, "0", OPTION_BOOLEAN, "display confirm quit screen on exit" },
+ { OPTION_UI_MOUSE, "1", OPTION_BOOLEAN, "display ui mouse cursor" },
// UI options
- { nullptr, nullptr, OPTION_HEADER, "UI UI OPTIONS" },
+ { nullptr, nullptr, OPTION_HEADER, "UI OPTIONS" },
{ OPTION_INFOS_SIZE "(0.05-1.00)", "0.75", OPTION_FLOAT, "UI right panel infos text size (0.05 - 1.00)" },
{ OPTION_FONT_ROWS "(25-40)", "30", OPTION_INTEGER, "UI font text size (25 - 40)" },
{ OPTION_HIDE_PANELS "(0-3)", "0", OPTION_INTEGER, "UI hide left/right panel in main view (0 = Show all, 1 = hide left, 2 = hide right, 3 = hide both" },