Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix 0x50FE3B4D from ksceSysrootIsManufacturingMode to ksceSysrootUseI… #329

Merged
merged 2 commits into from
Jul 1, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion db.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2058,7 +2058,7 @@ modules:
ksceSysrootIsAuCodecIcConexant: 0x46E72428
ksceSysrootIsBsodReboot: 0x4373AC96
ksceSysrootIsExternalBootMode: 0x89D19090
ksceSysrootIsManufacturingMode: 0x55392965
ksceSysrootUseExternalStorage: 0x55392965
ksceSysrootIsSafeMode: 0x834439A7
ksceSysrootIsUpdateMode: 0xB0E1FC67
ksceSysrootIsUsbEnumWakeup: 0x79C9AE10
Expand Down
4 changes: 3 additions & 1 deletion include/psp2kern/kernel/sysmem.h
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,9 @@ int ksceKernelMemRangeReleaseForPid(SceUID pid, void *addr, unsigned int size);
*/
int ksceKernelMemRangeReleaseWithPerm(SceKernelMemoryRefPerm perm, void *addr, unsigned int size);

int ksceSysrootIsManufacturingMode(void);
int ksceSysrootUseExternalStorage(void);

int ksceSysrootUseInternalStorage(void);

int ksceDebugPrintf(const char *fmt, ...);

Expand Down