mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12: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);
|
upper = fmt::to_upper(name);
|
||||||
|
|
||||||
if (upper.ends_with(".SPRX"))
|
if (upper.find(".SPRX") != umax || upper.find(".PRX") != umax)
|
||||||
{
|
{
|
||||||
// .sprx inside .mself found
|
// .sprx inside .mself found
|
||||||
file_queue.emplace_back(dir_queue[i] + entry.name, rec.off, rec.size);
|
file_queue.emplace_back(dir_queue[i] + entry.name, rec.off, rec.size);
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (upper.ends_with(".SELF"))
|
if (upper.find(".SELF") != umax || upper.find(".ELF") != umax)
|
||||||
{
|
{
|
||||||
// .self inside .mself found
|
// .self inside .mself found
|
||||||
file_queue.emplace_back(dir_queue[i] + entry.name, rec.off, rec.size);
|
file_queue.emplace_back(dir_queue[i] + entry.name, rec.off, rec.size);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue