Avoid overflows with menuhax generated splashes

This commit is contained in:
Aurora 2016-02-29 17:01:16 +01:00
parent 32e2b85f3a
commit 7f6ef45f37

View File

@ -39,6 +39,6 @@ void loadSplash(void){
//Check if it's a no-screen-init A9LH boot via PDN_GPU_CNT
if (*((u8*)0x10141200) == 0x1) return;
clearScreen();
fileRead(fb->top_left, "/rei/splash.bin", 0);
fileRead(fb->top_left, "/rei/splash.bin", 0x46500);
u64 i = 0xFFFFFF; while(--i) __asm("mov r0, r0"); //Less Ghetto sleep func
}