mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-28 13:28:01 +03:00
Thread.cpp: Explicitly state difference type in thread_ctrl::wait_for_accurate
This commit is contained in:
parent
94239f5526
commit
77ba2b40e7
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue