Merge pull request #305 from adibsurani/master

Added a patch to disable DLP region check
This commit is contained in:
TuxSH 2016-12-23 21:22:27 +01:00 committed by GitHub
commit 5e4fd53243

View File

@ -731,6 +731,24 @@ void patchCode(u64 progId, u16 progVer, u8 *code, u32 size)
) != 3) goto error; ) != 3) goto error;
} }
else if(progId == 0x0004013000002802LL && progVer > 0) //DLP
{
static const u8 pattern[] = {
0x0C, 0xAC, 0xC0, 0xD8
},
patch[] = {
0x00, 0x00, 0x00, 0x00
};
//Patch DLP region checks
if(!patchMemory(code, size,
pattern,
sizeof(pattern), 0,
patch,
sizeof(patch), 1
)) goto error;
}
if(CONFIG(PATCHGAMES) && (u32)((progId >> 0x20) & 0xFFFFFFEDULL) == 0x00040000) if(CONFIG(PATCHGAMES) && (u32)((progId >> 0x20) & 0xFFFFFFEDULL) == 0x00040000)
{ {
u8 regionId = 0xFF, u8 regionId = 0xFF,