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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frontend/mame/ui/ui.cpp b/src/frontend/mame/ui/ui.cpp
index 9edfe2fbda4..62d6003cb51 100644
--- a/src/frontend/mame/ui/ui.cpp
+++ b/src/frontend/mame/ui/ui.cpp
@@ -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()) // HBMAME
+// if (machine.options().cheat()) // MESSUI
{
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()) // HBMAME
+// 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));