-give JoostinOnline the feeling of being some good coder AKA

make him stop complaining about some uneeded changes :P
This commit is contained in:
fix94.1 2012-06-20 16:45:25 +00:00
parent 50f0e72e17
commit ed5b21d418
2 changed files with 7 additions and 6 deletions

View File

@ -93,9 +93,10 @@ GXRModeObj * __Disc_SelectVMode(u8 videoselected, u64 chantitle)
}
char Region;
if(chantitle != 0)
if(chantitle)
Region = ((u32)(chantitle) & 0xFFFFFFFF) % 256;
else Region = diskid[3];
else
Region = diskid[3];
switch (videoselected)
{

View File

@ -111,10 +111,10 @@ void Sys_Exit(void)
IOS_ReloadIOS(254);
//else
if(WII_LaunchTitle(HBC_108) < 0)
if(WII_LaunchTitle(HBC_HAXX) < 0)
if(WII_LaunchTitle(HBC_JODI) < 0)
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
WII_LaunchTitle(HBC_108);
WII_LaunchTitle(HBC_JODI);
WII_LaunchTitle(HBC_HAXX);
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
}
void __Sys_ResetCallback(void)