mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
PPU LLVM: Fixup VSH Precompilation
This commit is contained in:
parent
4eaa03e9ba
commit
6547fa9cc3
1 changed files with 2 additions and 2 deletions
|
@ -3645,7 +3645,7 @@ extern void ppu_initialize()
|
||||||
const std::string firmware_sprx_path = vfs::get("/dev_flash/sys/external/");
|
const std::string firmware_sprx_path = vfs::get("/dev_flash/sys/external/");
|
||||||
|
|
||||||
// If empty we have no indication for firmware cache state, check everything
|
// If empty we have no indication for firmware cache state, check everything
|
||||||
bool compile_fw = true;
|
bool compile_fw = !Emu.IsVsh();
|
||||||
|
|
||||||
idm::select<lv2_obj, lv2_prx>([&](u32, lv2_prx& _module)
|
idm::select<lv2_obj, lv2_prx>([&](u32, lv2_prx& _module)
|
||||||
{
|
{
|
||||||
|
@ -3691,7 +3691,7 @@ extern void ppu_initialize()
|
||||||
|
|
||||||
const std::string mount_point = vfs::get("/dev_flash/");
|
const std::string mount_point = vfs::get("/dev_flash/");
|
||||||
|
|
||||||
bool dev_flash_located = !Emu.GetCat().ends_with('P') && Emu.IsPathInsideDir(Emu.GetBoot(), mount_point);
|
bool dev_flash_located = !Emu.GetCat().ends_with('P') && Emu.IsPathInsideDir(Emu.GetBoot(), mount_point) && g_cfg.core.ppu_llvm_precompilation;
|
||||||
|
|
||||||
if (compile_fw || dev_flash_located)
|
if (compile_fw || dev_flash_located)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue