mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-02-14 11:44:33 +01:00
PPU Precompilation: Abort compilation as soon as possible on Emu.Stop()
This commit is contained in:
parent
87411da95f
commit
4d24ba1f35
|
|
@ -3741,6 +3741,11 @@ bool ppu_initialize(const ppu_module& info, bool check_only)
|
|||
// Allocate "core"
|
||||
std::lock_guard jlock(g_fxo->get<jit_core_allocator>().sem);
|
||||
|
||||
if (Emu.IsStopped())
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
ppu_log.warning("LLVM: Compiling module %s%s", cache_path, obj_name);
|
||||
|
||||
// Use another JIT instance
|
||||
|
|
|
|||
Loading…
Reference in a new issue