From 36e3939ec2f35ad0e148b19cda689e4b848b90f9 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Fri, 1 Apr 2022 03:44:36 +0200 Subject: [PATCH] Emu: actually wait 5 seconds during GraceFulShutdown --- rpcs3/Emu/System.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/System.cpp b/rpcs3/Emu/System.cpp index b595a3e322..c530c97072 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -1690,7 +1690,7 @@ void Emulator::GracefulShutdown(bool allow_autoexit, bool async_op) auto perform_kill = [allow_autoexit, this, info = ProcureCurrentEmulationCourseInformation()]() { - for (u32 i = 0; i < 50; i++) + for (u32 i = 0; i < 100; i++) { std::this_thread::sleep_for(50ms); Resume(); // TODO: Prevent pausing by other threads while in this loop