mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 03:25:16 +00:00
PPU LLVM: Relax MSELF entry name constraints
These names are a hint
This commit is contained in:
parent
36ab866c2c
commit
f47c7e0ef1
1 changed files with 2 additions and 2 deletions
|
@ -3821,14 +3821,14 @@ extern void ppu_precompile(std::vector<std::string>& dir_queue, std::vector<ppu_
|
|||
|
||||
upper = fmt::to_upper(name);
|
||||
|
||||
if (upper.ends_with(".SPRX"))
|
||||
if (upper.find(".SPRX") != umax || upper.find(".PRX") != umax)
|
||||
{
|
||||
// .sprx inside .mself found
|
||||
file_queue.emplace_back(dir_queue[i] + entry.name, rec.off, rec.size);
|
||||
continue;
|
||||
}
|
||||
|
||||
if (upper.ends_with(".SELF"))
|
||||
if (upper.find(".SELF") != umax || upper.find(".ELF") != umax)
|
||||
{
|
||||
// .self inside .mself found
|
||||
file_queue.emplace_back(dir_queue[i] + entry.name, rec.off, rec.size);
|
||||
|
|
Loading…
Add table
Reference in a new issue