summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/ui/videoopt.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-01-30 20:43:50 +0100
committer Miodrag Milanovic <mmicko@gmail.com>2016-01-30 20:43:50 +0100
commit42622cfe8effd40c0bf63030738e43feaa6999d6 (patch)
treeed9b2fca652c236a1a881c926a7f35fbd9dbcb3d /src/emu/ui/videoopt.cpp
parent81123aa4b5a8973298c5a6e46655fb2dcd05a494 (diff)
replace osd_lock with std::mutex [Miodrag Milanovic]
Diffstat (limited to 'src/emu/ui/videoopt.cpp')
-rw-r--r--src/emu/ui/videoopt.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/ui/videoopt.cpp b/src/emu/ui/videoopt.cpp
index e76c27305c8..aa3bc21dd5f 100644
--- a/src/emu/ui/videoopt.cpp
+++ b/src/emu/ui/videoopt.cpp
@@ -24,7 +24,7 @@ void ui_menu_video_targets::handle()
/* process the menu */
const ui_menu_event *menu_event = process(0);
if (menu_event != nullptr && menu_event->iptkey == IPT_UI_SELECT)
- ui_menu::stack_push(auto_alloc_clear(machine(), <ui_menu_video_options>(machine(), container, static_cast<render_target *>(menu_event->itemref))));
+ ui_menu::stack_push(global_alloc_clear<ui_menu_video_options>(machine(), container, static_cast<render_target *>(menu_event->itemref)));
}