diff --git a/app/src/main/cpp/pcsx2/x86/microVU_IR.h b/app/src/main/cpp/pcsx2/x86/microVU_IR.h index a98f2d1..4907281 100644 --- a/app/src/main/cpp/pcsx2/x86/microVU_IR.h +++ b/app/src/main/cpp/pcsx2/x86/microVU_IR.h @@ -522,7 +522,9 @@ public: } // Wait flush - std::thread t([]() {}); + std::thread t([]() { + std::this_thread::sleep_for(std::chrono::microseconds(2)); + }); t.detach(); }