mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-22 02:32:36 +01:00
Thread.cpp: Explicitly state difference type in thread_ctrl::wait_for_accurate
This commit is contained in:
parent
94239f5526
commit
77ba2b40e7
@ -2427,7 +2427,7 @@ void thread_ctrl::wait_for_accurate(u64 usec)
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
usec = (until - current).count();
|
usec = std::chrono::duration_cast<std::chrono::microseconds>(until - current).count();
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user