diff options
Diffstat (limited to 'src/frontend/mame/ui/menu.cpp')
-rw-r--r-- | src/frontend/mame/ui/menu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/frontend/mame/ui/menu.cpp b/src/frontend/mame/ui/menu.cpp index 7ce0beb0fb1..b1bcbb908b7 100644 --- a/src/frontend/mame/ui/menu.cpp +++ b/src/frontend/mame/ui/menu.cpp @@ -1234,7 +1234,7 @@ uint32_t menu::ui_handler(render_container &container, mame_ui_manager &mui) // if we have no menus stacked up, start with the main menu if (!state->topmost_menu<menu>()) - state->stack_push(std::unique_ptr<menu>(global_alloc_clear<menu_main>(mui, container))); + state->stack_push(std::unique_ptr<menu>(make_unique_clear<menu_main>(mui, container))); // update the menu state if (state->topmost_menu<menu>()) |