mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-18 01:09:16 +01:00
add fixes from brincraig (issue 1191)
This commit is contained in:
parent
f19285cd0d
commit
127db3f4b2
@ -2,8 +2,8 @@
|
|||||||
<app version="1">
|
<app version="1">
|
||||||
<name> USB Loader GX</name>
|
<name> USB Loader GX</name>
|
||||||
<coder>USB Loader GX Team</coder>
|
<coder>USB Loader GX Team</coder>
|
||||||
<version>1.0 r864</version>
|
<version>1.0 r865</version>
|
||||||
<release_date>200912131607</release_date>
|
<release_date>200912150637</release_date>
|
||||||
<short_description>Loads games from USB-devices</short_description>
|
<short_description>Loads games from USB-devices</short_description>
|
||||||
<long_description>USB Loader GX is a libwiigui based USB iso loader with a wii-like GUI. You can install games to your HDDs and boot them with shorter loading times.
|
<long_description>USB Loader GX is a libwiigui based USB iso loader with a wii-like GUI. You can install games to your HDDs and boot them with shorter loading times.
|
||||||
The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller.
|
The interactive GUI is completely controllable with WiiMote, Classic Controller or GC Controller.
|
||||||
|
@ -17,15 +17,11 @@
|
|||||||
#include <locale.h>
|
#include <locale.h>
|
||||||
#include <wiiuse/wpad.h>
|
#include <wiiuse/wpad.h>
|
||||||
|
|
||||||
#include <debug.h>
|
//#include <debug.h>
|
||||||
extern "C" {
|
extern "C" {
|
||||||
extern void __exception_setreload(int t);
|
extern void __exception_setreload(int t);
|
||||||
}
|
}
|
||||||
|
|
||||||
#include <gccore.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <di/di.h>
|
#include <di/di.h>
|
||||||
#include <sys/iosupport.h>
|
#include <sys/iosupport.h>
|
||||||
|
|
||||||
|
@ -2423,12 +2423,12 @@ int GameSettings(struct discHdr * header)
|
|||||||
viChoice = Settings.vpatch;
|
viChoice = Settings.vpatch;
|
||||||
if (Settings.cios == ios222)
|
if (Settings.cios == ios222)
|
||||||
iosChoice = i222;
|
iosChoice = i222;
|
||||||
else if (Settings.cios == 250)
|
else if (Settings.cios == ios250)
|
||||||
iosChoice = i250;
|
iosChoice = i250;
|
||||||
else if (Settings.cios == ios223)
|
else if (Settings.cios == ios223)
|
||||||
iosChoice = i223;
|
iosChoice = i223;
|
||||||
else
|
else
|
||||||
iosChoice = 249;
|
iosChoice = i249;
|
||||||
parentalcontrolChoice = 0;
|
parentalcontrolChoice = 0;
|
||||||
fix002 = Settings.error002;
|
fix002 = Settings.error002;
|
||||||
countrystrings = Settings.patchcountrystrings;
|
countrystrings = Settings.patchcountrystrings;
|
||||||
|
Loading…
Reference in New Issue
Block a user