summaryrefslogtreecommitdiffstatshomepage
path: root/src/frontend/mame/ui/moptions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/ui/moptions.cpp')
-rw-r--r--src/frontend/mame/ui/moptions.cpp44
1 files changed, 22 insertions, 22 deletions
diff --git a/src/frontend/mame/ui/moptions.cpp b/src/frontend/mame/ui/moptions.cpp
index ff08ab3f9e6..cf019588834 100644
--- a/src/frontend/mame/ui/moptions.cpp
+++ b/src/frontend/mame/ui/moptions.cpp
@@ -20,31 +20,31 @@
const options_entry ui_options::s_option_entries[] =
{
// search path options
- { nullptr, nullptr, core_options::option_type::HEADER, "UI SEARCH PATH OPTIONS" },
- { OPTION_HISTORY_PATH, "history;dats;.", core_options::option_type::STRING, "path to system/software info files" },
- { OPTION_CATEGORYINI_PATH, "folders", core_options::option_type::STRING, "path to category ini files" },
- { OPTION_CABINETS_PATH, "cabinets;cabdevs", core_options::option_type::STRING, "path to cabinets / devices image" },
- { OPTION_CPANELS_PATH, "cpanel", core_options::option_type::STRING, "path to control panel image" },
- { OPTION_PCBS_PATH, "pcb", core_options::option_type::STRING, "path to pcbs image" },
- { OPTION_FLYERS_PATH, "flyers", core_options::option_type::STRING, "path to flyers image" },
- { OPTION_TITLES_PATH, "titles", core_options::option_type::STRING, "path to titles image" },
- { OPTION_ENDS_PATH, "ends", core_options::option_type::STRING, "path to ends image" },
- { OPTION_MARQUEES_PATH, "marquees", core_options::option_type::STRING, "path to marquees image" },
- { OPTION_ARTPREV_PATH, "artwork preview;artpreview", core_options::option_type::STRING, "path to artwork preview image" },
- { OPTION_BOSSES_PATH, "bosses", core_options::option_type::STRING, "path to bosses image" },
- { OPTION_LOGOS_PATH, "logo", core_options::option_type::STRING, "path to logos image" },
- { OPTION_SCORES_PATH, "scores", core_options::option_type::STRING, "path to scores image" },
- { OPTION_VERSUS_PATH, "versus", core_options::option_type::STRING, "path to versus image" },
- { OPTION_GAMEOVER_PATH, "gameover", core_options::option_type::STRING, "path to gameover image" },
- { OPTION_HOWTO_PATH, "howto", core_options::option_type::STRING, "path to howto image" },
- { OPTION_SELECT_PATH, "select", core_options::option_type::STRING, "path to select image" },
- { OPTION_ICONS_PATH, "icons", core_options::option_type::STRING, "path to ICOns image" },
- { OPTION_COVER_PATH, "covers", core_options::option_type::STRING, "path to software cover image" },
- { OPTION_UI_PATH, "ui", core_options::option_type::STRING, "path to UI files" },
+ { nullptr, nullptr, core_options::option_type::HEADER, "UI SEARCH PATH OPTIONS" },
+ { OPTION_HISTORY_PATH, "history;dats;.", core_options::option_type::MULTIPATH, "path to system/software info files" },
+ { OPTION_CATEGORYINI_PATH, "folders", core_options::option_type::MULTIPATH, "path to category ini files" },
+ { OPTION_CABINETS_PATH, "cabinets;cabdevs", core_options::option_type::MULTIPATH, "path to cabinets / devices image" },
+ { OPTION_CPANELS_PATH, "cpanel", core_options::option_type::MULTIPATH, "path to control panel image" },
+ { OPTION_PCBS_PATH, "pcb", core_options::option_type::MULTIPATH, "path to pcbs image" },
+ { OPTION_FLYERS_PATH, "flyers", core_options::option_type::MULTIPATH, "path to flyers image" },
+ { OPTION_TITLES_PATH, "titles", core_options::option_type::MULTIPATH, "path to titles image" },
+ { OPTION_ENDS_PATH, "ends", core_options::option_type::MULTIPATH, "path to ends image" },
+ { OPTION_MARQUEES_PATH, "marquees", core_options::option_type::MULTIPATH, "path to marquees image" },
+ { OPTION_ARTPREV_PATH, "artwork preview;artpreview", core_options::option_type::MULTIPATH, "path to artwork preview image" },
+ { OPTION_BOSSES_PATH, "bosses", core_options::option_type::MULTIPATH, "path to bosses image" },
+ { OPTION_LOGOS_PATH, "logo", core_options::option_type::MULTIPATH, "path to logos image" },
+ { OPTION_SCORES_PATH, "scores", core_options::option_type::MULTIPATH, "path to scores image" },
+ { OPTION_VERSUS_PATH, "versus", core_options::option_type::MULTIPATH, "path to versus image" },
+ { OPTION_GAMEOVER_PATH, "gameover", core_options::option_type::MULTIPATH, "path to gameover image" },
+ { OPTION_HOWTO_PATH, "howto", core_options::option_type::MULTIPATH, "path to howto image" },
+ { OPTION_SELECT_PATH, "select", core_options::option_type::MULTIPATH, "path to select image" },
+ { OPTION_ICONS_PATH, "icons", core_options::option_type::MULTIPATH, "path to ICOns image" },
+ { OPTION_COVER_PATH, "covers", core_options::option_type::MULTIPATH, "path to software cover image" },
+ { OPTION_UI_PATH, "ui", core_options::option_type::MULTIPATH, "path to UI files" },
// misc options
{ nullptr, nullptr, core_options::option_type::HEADER, "UI MISC OPTIONS" },
- { OPTION_SYSTEM_NAMES, "", core_options::option_type::STRING, "translated system names file" },
+ { OPTION_SYSTEM_NAMES, "", core_options::option_type::MULTIPATH, "translated system names file" },
{ OPTION_SKIP_WARNINGS, "0", core_options::option_type::BOOLEAN, "display fewer repeated warnings about imperfect emulation" },
{ OPTION_REMEMBER_LAST, "1", core_options::option_type::BOOLEAN, "initially select last used system in main menu" },
{ OPTION_ENLARGE_SNAPS, "1", core_options::option_type::BOOLEAN, "enlarge artwork (snapshot, title, etc.) in right panel (keeping aspect ratio)" },