lolwut this fixes building on WSL

maybe memsearch is flasky on unaligned patterns, dunno
This commit is contained in:
TuxSH 2017-06-09 05:00:38 +02:00
parent 9a3d9aed30
commit 949d219c72

View File

@ -440,13 +440,12 @@ u32 patchSvcBreak9(u8 *pos, u32 size, u32 kernel9Address)
u32 patchKernel9Panic(u8 *pos, u32 size)
{
const u8 pattern[] = {0xFF, 0xEA, 0x04, 0xD0};
const u8 pattern[] = {0x00, 0x20, 0xA0, 0xE3, 0x02, 0x30, 0xA0, 0xE1, 0x02, 0x10, 0xA0, 0xE1, 0x05, 0x00, 0xA0, 0xE3};
u8 *temp = memsearch(pos, pattern, size, sizeof(pattern));
u32 *off = (u32 *)memsearch(pos, pattern, size, sizeof(pattern));
if(temp == NULL) return 1;
if(off == NULL) return 1;
u32 *off = (u32 *)(temp - 0x12);
*off = 0xE12FFF7E;
return 0;