Skip to content

Commit

Permalink
Fix LUT injection (wrong seg)
Browse files Browse the repository at this point in the history
  • Loading branch information
devnoname120 committed Apr 6, 2018
1 parent 0489657 commit df8a9da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.c
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ int module_start(SceSize argc, const void *args)
}

LOG("Size ok, hooking...\n");
ret = taiInjectDataForKernel(KERNEL_PID, info.modid, 1, 0x1E00, lookupNew, sizeof(lookupNew));
ret = taiInjectDataForKernel(KERNEL_PID, info.modid, 0, 0x1E00, lookupNew, sizeof(lookupNew));
LOG("injectdata: 0x%08X\n", ret);

return SCE_KERNEL_START_SUCCESS;
Expand Down

0 comments on commit df8a9da

Please sign in to comment.