diff options
Diffstat (limited to 'src/frontend/mame/ui/ui.cpp')
-rw-r--r-- | src/frontend/mame/ui/ui.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/frontend/mame/ui/ui.cpp b/src/frontend/mame/ui/ui.cpp index f44bf05af6f..20fbab9b626 100644 --- a/src/frontend/mame/ui/ui.cpp +++ b/src/frontend/mame/ui/ui.cpp @@ -681,7 +681,8 @@ void mame_ui_manager::update_and_render(render_container &container) m_popup_text_end = 0; // display the internal mouse cursor - if (m_mouse_show || (is_menu_active() && machine().options().ui_mouse())) + if (machine().options().ui_mouse() && (m_mouse_show || is_menu_active())) //MESSUI - (NEWUI) system pointer always on; MAME pointer always off +// if (m_mouse_show || (is_menu_active() && machine().options().ui_mouse())) { int32_t mouse_target_x, mouse_target_y; bool mouse_button; @@ -1492,7 +1493,7 @@ std::vector<ui::menu_item> mame_ui_manager::slider_init(running_machine &machine } // add CPU overclocking (cheat only) - if (machine.options().cheat()) +// if (machine.options().cheat()) // HBMAME { for (device_execute_interface &exec : execute_interface_enumerator(machine.root_device())) { @@ -1521,7 +1522,7 @@ std::vector<ui::menu_item> mame_ui_manager::slider_init(running_machine &machine std::string screen_desc = machine_info().get_screen_desc(screen); // add refresh rate tweaker - if (machine.options().cheat()) +// if (machine.options().cheat()) // HBMAME { std::string str = string_format(_("%1$s Refresh Rate"), screen_desc); slider_alloc(std::move(str), -10000, 0, 10000, 1000, std::bind(&mame_ui_manager::slider_refresh, this, std::ref(screen), _1, _2)); |