mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-08-04 15:19:47 +00:00
Update PPUThread.cpp
This commit is contained in:
parent
5ca73dae58
commit
a3369b9785
1 changed files with 8 additions and 0 deletions
|
@ -4283,6 +4283,14 @@ extern void ppu_precompile(std::vector<std::string>& dir_queue, std::vector<ppu_
|
||||||
{
|
{
|
||||||
ppu_log.error("Possible missed KLIC for precompilation of '%s', please report to developers.", path);
|
ppu_log.error("Possible missed KLIC for precompilation of '%s', please report to developers.", path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Ignore executables larger thaan 500KB to prevent a long pause on exitspawn
|
||||||
|
if (src.size() > 500000)
|
||||||
|
{
|
||||||
|
g_progr_ftotal_bits -= file_size;
|
||||||
|
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!src)
|
if (!src)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue