Skip to content

Commit

Permalink
PPU Precompilation: Fixup MSELF duplicate check
Browse files Browse the repository at this point in the history
  • Loading branch information
elad335 committed Mar 12, 2024
1 parent 0adf688 commit 1643fad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rpcs3/Emu/Cell/PPUThread.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3798,13 +3798,13 @@ extern void ppu_precompile(std::vector<std::string>& dir_queue, std::vector<ppu_
mself_header hdr{};

if (mself.read(hdr) && hdr.get_count(mself.size()))
{
{
std::set<u64> offs;

for (u32 j = 0; j < hdr.count; j++)
{
mself_record rec{};

std::set<u64> offs;

if (mself.read(rec) && rec.get_pos(mself.size()))
{
if (rec.size <= 0x20)
Expand Down

0 comments on commit 1643fad

Please sign in to comment.