Skip to content

Commit

Permalink
Added support for FW 3.73 (#553)
Browse files Browse the repository at this point in the history
* Added support for FW 3.73

* Added support for FW 3.73
  • Loading branch information
RealYoti authored and TheOfficialFloW committed Dec 26, 2019
1 parent a87ac27 commit 246d318
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions modules/kernel/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,7 @@ int _shellKernelMountById(ShellMountIdArgs *args) {
case 0x700DA0CD: // 3.70 retail
case 0xF7846B4E: // 3.71 retail
case 0xA8E80BA8: // 3.72 retail
case 0xB299D195: // 3.73 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;
Expand Down Expand Up @@ -282,6 +283,7 @@ int module_start(SceSize args, void *argp) {
case 0x81A49C2B: // 3.70 retail
case 0xF2D59083: // 3.71 retail
case 0x9C16D40A: // 3.72 retail
case 0xF7794A6C: // 3.73 retail
module_get_offset(KERNEL_PID, info.modid, 0, 0x18735, (uintptr_t *)&sceIoFindMountPoint);
break;

Expand Down
1 change: 1 addition & 0 deletions modules/patch/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ int module_start(SceSize args, void *argp) {
case 0x700DA0CD: // 3.70 retail
case 0xF7846B4E: // 3.71 retail
case 0xA8E80BA8: // 3.72 retail
case 0xB299D195: // 3.73 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;
Expand Down

0 comments on commit 246d318

Please sign in to comment.