From 16125c94e668b8ba27db369a430e82e5d8dab578 Mon Sep 17 00:00:00 2001 From: "fix94.1" Date: Sun, 6 May 2012 18:35:39 +0000 Subject: [PATCH] -because some people started whining about the fact the last change returns to health screen instead of system menu I changed that now just for them --- source/loader/sys.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/loader/sys.c b/source/loader/sys.c index 08379512..2824f16c 100644 --- a/source/loader/sys.c +++ b/source/loader/sys.c @@ -111,7 +111,7 @@ void Sys_Exit(void) if(WII_LaunchTitle(HBC_108) < 0) if(WII_LaunchTitle(HBC_HAXX) < 0) if(WII_LaunchTitle(HBC_JODI) < 0) - WII_LaunchTitle(0x100000002LL); //SYS_ResetSystem doesnt work properly with new libogc + WII_ReturnToMenu(); //SYS_ResetSystem doesnt work properly with new libogc } void __Sys_ResetCallback(void) @@ -135,5 +135,5 @@ void Sys_Init(void) void Sys_LoadMenu(void) { /* Return to the Wii system menu */ - WII_LaunchTitle(0x100000002LL); //SYS_ResetSystem doesnt work properly with new libogc + WII_ReturnToMenu(); //SYS_ResetSystem doesnt work properly with new libogc }