1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-26 04:32:35 +01:00

Fix unresponsive UI during SPU compilation

This commit is contained in:
Megamouse 2020-12-15 23:31:33 +01:00 committed by Ivan
parent 0bfec59af8
commit d21f87af5d

View File

@ -432,6 +432,9 @@ void spu_cache::initialize()
named_thread_group workers("SPU Worker ", worker_count, [&]() -> uint
{
// Set low priority
thread_ctrl::set_native_priority(-1);
// Initialize compiler instances for parallel compilation
std::unique_ptr<spu_recompiler_base> compiler;