Fix confirm on exit codepath so that 'Quit RetroArch' works
again when selecting it
This commit is contained in:
parent
fab1c0a75c
commit
4bc837fe77
|
@ -2000,8 +2000,10 @@ bool command_event(enum event_command cmd, void *data)
|
||||||
#ifdef HAVE_MENU
|
#ifdef HAVE_MENU
|
||||||
if (settings && settings->confirm_on_exit &&
|
if (settings && settings->confirm_on_exit &&
|
||||||
!menu_popup_is_active() && !runloop_is_quit_confirm())
|
!menu_popup_is_active() && !runloop_is_quit_confirm())
|
||||||
|
{
|
||||||
menu_popup_show_message(MENU_POPUP_QUIT_CONFIRM, MENU_ENUM_LABEL_CONFIRM_ON_EXIT);
|
menu_popup_show_message(MENU_POPUP_QUIT_CONFIRM, MENU_ENUM_LABEL_CONFIRM_ON_EXIT);
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
#endif
|
#endif
|
||||||
handle_quit_event();
|
handle_quit_event();
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue