diff options
author | 2016-02-04 14:56:46 +0100 | |
---|---|---|
committer | 2016-02-04 15:14:26 +0100 | |
commit | 213283e43064d04bc5ba671e23177eb7ebe8d0a2 (patch) | |
tree | c113b6ef22c6c4adbb140d89a57eca70d38f5002 /src/emu/ui/custui.cpp | |
parent | 701df7fe9ea4775b25c9d7263592cb3d442e2793 (diff) |
some MEWUI to UI renames (nw)
Diffstat (limited to 'src/emu/ui/custui.cpp')
-rw-r--r-- | src/emu/ui/custui.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/emu/ui/custui.cpp b/src/emu/ui/custui.cpp index ee30658200b..fb247509e59 100644 --- a/src/emu/ui/custui.cpp +++ b/src/emu/ui/custui.cpp @@ -2,9 +2,9 @@ // copyright-holders:Dankan1890 /********************************************************************* - mewui/custui.cpp + ui/custui.cpp - Internal MEWUI user interface. + Internal UI user interface. *********************************************************************/ @@ -141,7 +141,7 @@ void ui_menu_custom_ui::custom_render(void *selectedref, float top, float bottom ui_menu_font_ui::ui_menu_font_ui(running_machine &machine, render_container *container) : ui_menu(machine, container) { emu_options &moptions = machine.options(); -#ifdef MEWUI_WINDOWS +#ifdef OSD_WINDOWS std::string name(moptions.ui_font()); list(); @@ -180,7 +180,7 @@ ui_menu_font_ui::ui_menu_font_ui(running_machine &machine, render_container *con } -#ifdef MEWUI_WINDOWS +#ifdef OSD_WINDOWS //------------------------------------------------- // fonts enumerator CALLBACK //------------------------------------------------- @@ -227,7 +227,7 @@ ui_menu_font_ui::~ui_menu_font_ui() std::string error_string; emu_options &moptions = machine().options(); -#ifdef MEWUI_WINDOWS +#ifdef OSD_WINDOWS std::string name(m_fonts[m_actual]); if (m_fonts[m_actual] != "default") { @@ -273,7 +273,7 @@ void ui_menu_font_ui::handle() } break; -#ifdef MEWUI_WINDOWS +#ifdef OSD_WINDOWS case MUI_FNT: if (m_event->iptkey == IPT_UI_LEFT || m_event->iptkey == IPT_UI_RIGHT) @@ -313,7 +313,7 @@ void ui_menu_font_ui::populate() UINT32 arrow_flags; std::string tmptxt; -#ifdef MEWUI_WINDOWS +#ifdef OSD_WINDOWS // add fonts option arrow_flags = get_arrow_flags(0, m_fonts.size() - 1, m_actual); std::string name(m_fonts[m_actual]); |