From 224878c426f5fd406f57a517adabe26a4492764e Mon Sep 17 00:00:00 2001 From: etabeta78 Date: Tue, 6 Jan 2015 16:45:12 +0100 Subject: [PATCH] (MESS) ui: don't ask confirmation when leaving the image creation menu as if a new file was being created. nw. --- src/emu/ui/filesel.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/emu/ui/filesel.c b/src/emu/ui/filesel.c index d017b7f1bc7..bdb5361f7bf 100644 --- a/src/emu/ui/filesel.c +++ b/src/emu/ui/filesel.c @@ -328,6 +328,10 @@ void ui_menu_file_create::handle() reset(UI_MENU_RESET_REMEMBER_POSITION); } break; + + case IPT_UI_CANCEL: + ui_menu::stack_pop(machine()); + break; } } }