mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 17:01:24 +12:00
unself.cpp: Always reset the old SELF header information before loading
This commit is contained in:
parent
8f66c50721
commit
ad22cf5051
2 changed files with 3 additions and 3 deletions
|
@ -3460,7 +3460,7 @@ utils::serial* Emulator::DeserialManager() const
|
|||
|
||||
bool Emulator::IsVsh()
|
||||
{
|
||||
return g_ps3_process_info.self_info.prog_id_hdr.program_authority_id >> 52 == 0x107; // Not only VSH but also most CoreOS LV2 SELFs need the special treatment
|
||||
return g_ps3_process_info.self_info.valid && (g_ps3_process_info.self_info.prog_id_hdr.program_authority_id >> 52 == 0x107); // Not only VSH but also most CoreOS LV2 SELFs need the special treatment
|
||||
}
|
||||
|
||||
bool Emulator::IsValidSfb(const std::string& path)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue