From 1747e68d1d6cae64f123a1c1a10f3e180394dd8b Mon Sep 17 00:00:00 2001 From: Megamouse Date: Fri, 21 Oct 2022 02:40:32 +0200 Subject: [PATCH] Fix warning --- 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 f4ae9109fd..dc97a85b82 100644 --- a/rpcs3/Emu/System.cpp +++ b/rpcs3/Emu/System.cpp @@ -2288,7 +2288,7 @@ std::shared_ptr Emulator::Kill(bool allow_autoexit, bool savestat named_thread stop_watchdog("Stop Watchdog", [&]() { - for (uint i = 0; thread_ctrl::state() != thread_state::aborting;) + for (int i = 0; thread_ctrl::state() != thread_state::aborting;) { // We don't need accurate timekeeping, using clocks may interfere with debugging if (i >= (savestate ? 2000 : 1000))