From c464e90d5d457ccd7a68f087db1427db70561976 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Sat, 30 Jan 2021 23:04:59 +0100 Subject: [PATCH] Fix stop exit of check_only ppu_initialize --- rpcs3/Emu/Cell/PPUThread.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/rpcs3/Emu/Cell/PPUThread.cpp b/rpcs3/Emu/Cell/PPUThread.cpp index 91fa8f76fb..d11802c0c2 100644 --- a/rpcs3/Emu/Cell/PPUThread.cpp +++ b/rpcs3/Emu/Cell/PPUThread.cpp @@ -2809,6 +2809,11 @@ bool ppu_initialize(const ppu_module& info, bool check_only) g_progr_ptotal++; } + if (check_only) + { + return false; + } + // Create worker threads for compilation (TODO: how many threads) { u32 thread_count = Emu.GetMaxThreads();