summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui/moptions.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2017-08-07 17:00:24 +1000
committer Vas Crabb <vas@vastheman.com>2017-08-07 17:00:24 +1000
commitdd673e6fa64347e1ed8a58fd8408bf36898e07ba (patch)
tree0b85785faa945c22ac27d04eb25a5a64543c68e0 /src/frontend/mame/ui/moptions.cpp
parent8a209caeeb4f339f471b3aea85b1c2188cc16201 (diff)
internal UI improvements:
* Greatly reduce copy/paste code for drawing menu header/footer boxes * Display full name of selected slot device below slots menu * Fix up spacing on dircetory configuration menu * Fix min/max for UI font rows per screen setting
Diffstat (limited to 'src/frontend/mame/ui/moptions.cpp')
-rw-r--r--src/frontend/mame/ui/moptions.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/frontend/mame/ui/moptions.cpp b/src/frontend/mame/ui/moptions.cpp
index 2fe51837718..a59090a8f57 100644
--- a/src/frontend/mame/ui/moptions.cpp
+++ b/src/frontend/mame/ui/moptions.cpp
@@ -58,7 +58,7 @@ const options_entry ui_options::s_option_entries[] =
// 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_FONT_ROWS "(25-40)", "30", OPTION_INTEGER, "UI font lines per screen (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" },
{ OPTION_UI_BORDER_COLOR, "ffffffff", OPTION_STRING, "UI border color (ARGB)" },
{ OPTION_UI_BACKGROUND_COLOR, "ef101030", OPTION_STRING, "UI background color (ARGB)" },
@@ -83,8 +83,7 @@ const options_entry ui_options::s_option_entries[] =
// ui_options - constructor
//-------------------------------------------------
-ui_options::ui_options()
-: core_options()
+ui_options::ui_options() : core_options()
{
add_entries(ui_options::s_option_entries);
}