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 e0c0de0d4ab..1e0fe5154e7 100644 --- a/src/frontend/mame/ui/ui.cpp +++ b/src/frontend/mame/ui/ui.cpp @@ -673,7 +673,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; @@ -1484,7 +1485,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()) // MESSUI { for (device_execute_interface &exec : execute_interface_enumerator(machine.root_device())) { @@ -1513,7 +1514,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()) // MESSUI { 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)); |