From 9a49430048d2c5a0d02a300c6ebeea039be42414 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Fri, 11 Jan 2013 20:10:04 +0100 Subject: [PATCH] (360) Exitspawn fix --- frontend/platform/platform_xdk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/platform/platform_xdk.c b/frontend/platform/platform_xdk.c index 6233ccf480..6b48294246 100644 --- a/frontend/platform/platform_xdk.c +++ b/frontend/platform/platform_xdk.c @@ -391,7 +391,7 @@ static void system_exitspawn(void) #ifdef IS_SALAMANDER rarch_console_exec(default_paths.libretro_path); #else - if(g_extern.fullpath) + if(g_extern.lifecycle_menu_state & (1 << MODE_EXITSPAWN)) rarch_console_exec(g_extern.fullpath); #endif }