mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-03-23 19:21:43 +00:00
Fix warning
This commit is contained in:
parent
c4c710d39d
commit
1747e68d1d
@ -2288,7 +2288,7 @@ std::shared_ptr<utils::serial> Emulator::Kill(bool allow_autoexit, bool savestat
|
|||||||
|
|
||||||
named_thread stop_watchdog("Stop Watchdog", [&]()
|
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
|
// We don't need accurate timekeeping, using clocks may interfere with debugging
|
||||||
if (i >= (savestate ? 2000 : 1000))
|
if (i >= (savestate ? 2000 : 1000))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user