From c3a5e3f4919d92322321ab930352397e807e6a52 Mon Sep 17 00:00:00 2001 From: Nekotekina Date: Sun, 25 Mar 2018 00:04:17 +0300 Subject: [PATCH] [LLVM Cache] Minor workaround --- rpcs3/Emu/System.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index 54d1acd6ba..bb96b46cd8 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -462,6 +462,9 @@ void Emulator::Load(bool add_only) // Force LLVM recompiler g_cfg.core.ppu_decoder.from_default(); + // Workaround for analyser glitches + vm::falloc(0x10000, 0xf0000, vm::main); + return thread_ctrl::spawn("SPRX Loader", [this] { std::vector dir_queue;