mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-04 18:45:05 +01:00
64744ce20d
*Fixed Toy Story 3 boot bug *Changed IOS limits. Now allowing all IOSs from 200-255 to support more Waninkoko cIOS slots. You will get a warning if you don't have an IOS installed and try to choose it.
19 lines
422 B
C++
19 lines
422 B
C++
#ifndef _IOSLOADER_H_
|
|
#define _IOSLOADER_H_
|
|
|
|
#include <gccore.h>
|
|
|
|
class IosLoader
|
|
{
|
|
public:
|
|
static s32 LoadAppCios();
|
|
static s32 LoadGameCios(s32 ios);
|
|
static s32 ReloadIosSafe(s32 ios);
|
|
static bool IsHermesIOS(s32 ios = IOS_GetVersion());
|
|
static bool IsWaninkokoIOS(s32 ios = IOS_GetVersion());
|
|
private:
|
|
static void LoadIOSModules(s32 ios, s32 ios_rev);
|
|
};
|
|
|
|
#endif
|