Get rid of some extraneous HAVE_RMENU ifdefs in retroarch.c

This commit is contained in:
twinaphex 2013-03-09 15:23:54 +01:00
parent 1e44407bd8
commit af7430b767

View File

@ -2858,18 +2858,14 @@ bool rarch_main_iterate(void)
// SHUTDOWN on consoles should exit RetroArch completely.
if (g_extern.system.shutdown)
{
#ifdef HAVE_RMENU
g_extern.lifecycle_mode_state |= (1ULL << MODE_EXIT);
#endif
return false;
}
// Time to drop?
if (input_key_pressed_func(RARCH_QUIT_KEY) || !video_alive_func())
{
#ifdef HAVE_RMENU
g_extern.lifecycle_mode_state |= (1ULL << MODE_EXIT);
#endif
return false;
}