From 6bba308347a852be829ef9c652fa18fd9896ebc8 Mon Sep 17 00:00:00 2001 From: trigger Date: Sat, 1 Mar 2025 01:18:38 -0800 Subject: [PATCH] Update PPUThread.cpp --- rpcs3/Emu/Cell/PPUThread.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/rpcs3/Emu/Cell/PPUThread.cpp b/rpcs3/Emu/Cell/PPUThread.cpp index 6fe78a8d3c..90241016e6 100644 --- a/rpcs3/Emu/Cell/PPUThread.cpp +++ b/rpcs3/Emu/Cell/PPUThread.cpp @@ -4282,14 +4282,14 @@ extern void ppu_precompile(std::vector& dir_queue, std::vector= 500000) - { - g_progr_ftotal_bits -= file_size; + // Ignore executables larger than 500KB to prevent a long pause on exitspawn + if (src.size() >= 500000) + { + g_progr_ftotal_bits -= file_size; - continue; + continue; + } } }