Update PPUThread.cpp

This commit is contained in:
Elad Ashkenazi 2022-05-16 14:51:22 +03:00 committed by Ivan
parent 7ddeb0d00f
commit a768855a7a
1 changed files with 1 additions and 1 deletions

View File

@ -2423,7 +2423,7 @@ extern void ppu_precompile(std::vector<std::string>& dir_queue, std::vector<lv2_
std::string upper = fmt::to_upper(entry.name);
// Check .sprx filename
if (upper.ends_with(".SPRX"))
if (upper.ends_with(".SPRX") && entry.name != "libfs_utility_init.sprx"sv)
{
// Skip already loaded modules or HLEd ones
if (dir_queue[i] == firmware_sprx_path)