Added support for FW 3.71

This commit is contained in:
TheFloW 2019-08-26 13:51:50 +02:00
parent 4d7671b66d
commit a2d64d4958
2 changed files with 3 additions and 0 deletions

View File

@ -164,6 +164,7 @@ int _shellKernelMountById(ShellMountIdArgs *args) {
case 0x321E4852: // 3.69 retail
case 0x700DA0CD: // 3.70 retail
case 0xF7846B4E: // 3.71 retail
module_get_offset(KERNEL_PID, tai_info.modid, 0, 0x2DE9, (uintptr_t *)&sceAppMgrFindProcessInfoByPid);
module_get_offset(KERNEL_PID, tai_info.modid, 0, 0x19E95, (uintptr_t *)&sceAppMgrMountById);
break;
@ -278,6 +279,7 @@ int module_start(SceSize args, void *argp) {
case 0xF16E72C7: // 3.69 retail
case 0x81A49C2B: // 3.70 retail
case 0xF2D59083: // 3.71 retail
module_get_offset(KERNEL_PID, info.modid, 0, 0x18735, (uintptr_t *)&sceIoFindMountPoint);
break;

View File

@ -47,6 +47,7 @@ int module_start(SceSize args, void *argp) {
case 0x321E4852: // 3.69 retail
case 0x700DA0CD: // 3.70 retail
case 0xF7846B4E: // 3.71 retail
hooks[0] = taiInjectDataForKernel(KERNEL_PID, info.modid, 0, 0xB34C, &nop_nop_opcode, 4);
hooks[1] = taiInjectDataForKernel(KERNEL_PID, info.modid, 0, 0xB37C, &nop_nop_opcode, 2);
break;