summaryrefslogtreecommitdiffstats
path: root/src/frontend/mame/ui/ui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/mame/ui/ui.cpp')
-rw-r--r--src/frontend/mame/ui/ui.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/frontend/mame/ui/ui.cpp b/src/frontend/mame/ui/ui.cpp
index 8813251976c..0ca570337a7 100644
--- a/src/frontend/mame/ui/ui.cpp
+++ b/src/frontend/mame/ui/ui.cpp
@@ -33,7 +33,6 @@
#include "emuopts.h"
#include "mameopts.h"
#include "drivenum.h"
-#include "fileio.h"
#include "natkeyboard.h"
#include "render.h"
#include "cheat.h"
@@ -674,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;
@@ -1485,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()) // HBMAME
{
for (device_execute_interface &exec : execute_interface_enumerator(machine.root_device()))
{
@@ -1514,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()) // 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));