mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-05 14:37:08 +00:00
PPU Precompilation Fixup
This commit is contained in:
parent
343ba8733b
commit
ee869a49f4
3 changed files with 11 additions and 3 deletions
|
|
@ -1658,7 +1658,7 @@ std::shared_ptr<lv2_prx> ppu_load_prx(const ppu_prx_object& elf, bool virtual_lo
|
|||
|
||||
void ppu_unload_prx(const lv2_prx& prx)
|
||||
{
|
||||
if (prx.segs[0].ptr != vm::base(prx.segs[0].addr))
|
||||
if (prx.segs.empty() || prx.segs[0].ptr != vm::base(prx.segs[0].addr))
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue