mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 15:15:09 +01:00
6af658a98d
This reverts commit 4622e2fa3a
.
49 lines
869 B
C++
49 lines
869 B
C++
|
|
#include <malloc.h>
|
|
#include <wiiuse/wpad.h>
|
|
|
|
#include "RuntimeIOSPatch.h"
|
|
#include "menu.h"
|
|
#include "video.h"
|
|
#include "wad.h"
|
|
#include "getios.h"
|
|
|
|
#define HAVE_AHBPROT ((*(vu32*)0xcd800064 == 0xFFFFFFFF) ? 1 : 0)
|
|
|
|
//---------------------------------------------------------------------------------
|
|
int main(int argc, char **argv) {
|
|
//---------------------------------------------------------------------------------
|
|
|
|
// Initialise the video system
|
|
VIDEO_Init();
|
|
Video_SetMode();
|
|
|
|
if(HAVE_AHBPROT)
|
|
runtimePatchApply();
|
|
|
|
WPAD_Init();
|
|
PAD_Init();
|
|
|
|
menu();
|
|
|
|
signed_blob *p_tmd = NULL;
|
|
u32 len;
|
|
s32 ret;
|
|
|
|
ret = GetTMD(0x0001000154484246LL, &p_tmd, &len);
|
|
|
|
if(ret < 0)
|
|
{
|
|
*(vu32*)0x8132FFFB = 0x50756E65;
|
|
DCFlushRange((void*)0x8132FFFB, 4);
|
|
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
|
|
}
|
|
else
|
|
{
|
|
WII_LaunchTitle(0x0001000154484246);
|
|
|
|
}
|
|
|
|
return 0;
|
|
}
|