mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-03 03:05:18 +02:00
Fix wrong dump length.
This commit is contained in:
@@ -810,7 +810,8 @@ Module *__KernelLoadELFFromPtr(const u8 *ptr, u32 loadAddress, std::string *erro
|
||||
// If we've made it this far, it should be safe to dump.
|
||||
if (g_Config.bDumpDecryptedEboot) {
|
||||
INFO_LOG(SCEMODULE, "Dumping derypted EBOOT.BIN to file.");
|
||||
__SaveDecryptedEbootToStorageMedia(ptr, head->elf_size);
|
||||
const u32 dumpLength = ret;
|
||||
__SaveDecryptedEbootToStorageMedia(ptr, dumpLength);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user