2011-10-15 17:31:29 +02:00
|
|
|
|
|
|
|
#include <malloc.h>
|
|
|
|
#include <wiiuse/wpad.h>
|
|
|
|
|
|
|
|
#include "RuntimeIOSPatch.h"
|
|
|
|
#include "menu.h"
|
|
|
|
#include "video.h"
|
|
|
|
#include "wad.h"
|
|
|
|
#include "Network/network.h"
|
|
|
|
|
|
|
|
#define HAVE_AHBPROT ((*(vu32*)0xcd800064 == 0xFFFFFFFF) ? 1 : 0)
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
//---------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
// Initialise the video system
|
|
|
|
InitNetworkThread();
|
|
|
|
VIDEO_Init();
|
|
|
|
Video_SetMode();
|
2012-03-21 19:30:49 +01:00
|
|
|
|
2011-10-15 17:31:29 +02:00
|
|
|
if(HAVE_AHBPROT)
|
|
|
|
runtimePatchApply();
|
2012-03-21 19:30:49 +01:00
|
|
|
|
|
|
|
WPAD_Init();
|
|
|
|
PAD_Init();
|
|
|
|
|
2011-10-15 17:31:29 +02:00
|
|
|
menu();
|
2012-03-21 19:30:49 +01:00
|
|
|
|
2011-10-15 17:31:29 +02:00
|
|
|
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|