PPU LLVM: don't use module name as PRX indicator

This commit is contained in:
Nekotekina 2021-01-28 14:22:49 +03:00
parent 8a029159cd
commit c89362f6a2
2 changed files with 3 additions and 3 deletions

View file

@ -2561,7 +2561,7 @@ bool ppu_initialize(const ppu_module& info, bool check_only)
usz fpos = 0;
// Difference between function name and current location
const u32 reloc = info.name.empty() ? 0 : info.segs.at(0).addr;
const u32 reloc = info.relocs.empty() ? 0 : info.segs.at(0).addr;
// Info sent to threads
std::vector<std::pair<std::string, ppu_module>> workload;