mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-25 10:00:54 +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;
|
||||
}
|
||||
|
||||
usec = (until - current).count();
|
||||
usec = std::chrono::duration_cast<std::chrono::microseconds>(until - current).count();
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue