Skip to content

Commit

Permalink
Added support for FW 3.74
Browse files Browse the repository at this point in the history
  • Loading branch information
RealYoti committed Jun 30, 2022
1 parent e55ed4a commit 6b9ecd8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions kernel/exports.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
StorageMgrKernel:
attributes: 0
version:
major: 1
minor: 0
major: 3
minor: 3
main:
start: module_start
stop: module_stop
Expand Down
4 changes: 3 additions & 1 deletion kernel/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

#include <taihen.h>

#define VERSION_STRING "v3.2"
#define VERSION_STRING "v3.3"

static void log_write(const char *buffer, size_t length, const char *folderpath, const char *fullpath);
const char *log_folder_ur0_path = "ur0:tai/";
Expand Down Expand Up @@ -812,6 +812,7 @@ void patch_appmgr() {
case 0xF7846B4E: // 3.71 retail
case 0xA8E80BA8: // 3.72 retail
case 0xB299D195: // 3.73 retail
case 0x30007BD3: // 3.74 retail
taiInjectDataForKernel(KERNEL_PID, sceappmgr_modinfo.modid, 0, 0xB34C, &nop_nop_opcode, 4);
taiInjectDataForKernel(KERNEL_PID, sceappmgr_modinfo.modid, 0, 0xB37C, &nop_nop_opcode, 2);
break;
Expand Down Expand Up @@ -1045,6 +1046,7 @@ int module_start(SceSize args, void *argp) {
case 0xF2D59083: // 3.71 retail
case 0x9C16D40A: // 3.72 retail
case 0xF7794A6C: // 3.73 retail
case 0x796DAFAF: // 3.74 retail
module_get_offset(KERNEL_PID, sceiofilemgr_modinfo.modid, 0, 0x18735, (uintptr_t *)&sceIoFindMountPoint);
break;
default:
Expand Down

0 comments on commit 6b9ecd8

Please sign in to comment.