PS4Debug 1.0b5 FW 3.00 Support (#54)

PS4Debug 1.0b5 seems to support FW 3.00 and can be used for remove save mounter
This commit is contained in:
SonyUSA
2025-09-11 16:48:19 -06:00
committed by GitHub
parent f446ee1ee5
commit b41b22d768

View File

@@ -817,7 +817,7 @@ void handleIPC(struct clientArgs *client, std::string &inputStr,
case BREW_TOGGLE_PS5DEBUG:{
OrbisKernelSwVersion sys_ver;
sceKernelGetProsperoSystemSwVersion(&sys_ver);
bool not_supported = ((sys_ver.version >> 16) <= 0x300 || (sys_ver.version >> 16) >= 0x800);
bool not_supported = ((sys_ver.version >> 16) < 0x300 || (sys_ver.version >> 16) >= 0x800);
if(not_supported){
notify(true, "PS5Debug is not supported on this firmware");
reply(sender_app, true);
@@ -948,4 +948,4 @@ void *IPC_loop(void *args) {
// Cleanup
networkCloseConnection(serverSocket);
return nullptr;
}
}