mirror of
https://github.com/etaHEN/etaHEN.git
synced 2026-01-12 19:25:33 +08:00
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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user