From a7cf587ba1eea44423e45dd04b74f87e57a08fa4 Mon Sep 17 00:00:00 2001 From: TheOfficialFloW Date: Sat, 31 Aug 2019 10:41:46 +0200 Subject: [PATCH] Added support for FW 3.71/3.72 --- driver/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/driver/main.c b/driver/main.c index de79b49..f76f6e1 100644 --- a/driver/main.c +++ b/driver/main.c @@ -160,6 +160,8 @@ int redirect_ux0() { case 0xF16E72C7: // 3.69 retail case 0x81A49C2B: // 3.70 retail + case 0xF2D59083: // 3.71 retail + case 0x9C16D40A: // 3.72 retail module_get_offset(KERNEL_PID, info.modid, 0, 0x18735, (uintptr_t *)&sceIoFindMountPoint); break; @@ -271,6 +273,8 @@ void patch_appmgr() { case 0x321E4852: // 3.69 retail case 0x700DA0CD: // 3.70 retail + case 0xF7846B4E: // 3.71 retail + case 0xA8E80BA8: // 3.72 retail taiInjectDataForKernel(KERNEL_PID, appmgr_info.modid, 0, 0xB34C, &nop_nop_opcode, 4); taiInjectDataForKernel(KERNEL_PID, appmgr_info.modid, 0, 0xB37C, &nop_nop_opcode, 2); break;