diff options
author | 2015-01-06 16:45:12 +0100 | |
---|---|---|
committer | 2015-01-06 16:45:12 +0100 | |
commit | 224878c426f5fd406f57a517adabe26a4492764e (patch) | |
tree | cc1c02c966db2a9e728c2c4141117f91f2e981e9 | |
parent | fa41ad2cde42529ca4eb0c7b57cbec728fe927bf (diff) |
(MESS) ui: don't ask confirmation when leaving the image creation menu
as if a new file was being created. nw.
-rw-r--r-- | src/emu/ui/filesel.c | 4 |
1 files changed, 4 insertions, 0 deletions
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; } } } |