mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-21 13:25:45 +00:00
Native Clock: remove inaccuracy mask.
This commit is contained in:
parent
2d838d8ec9
commit
eadcaab9bd
2 changed files with 1 additions and 6 deletions
|
@ -90,7 +90,7 @@ u64 NativeClock::GetRTSC() {
|
|||
} while (!time_point.compare_exchange_weak(
|
||||
current_time_point, new_time_point, std::memory_order_release, std::memory_order_acquire));
|
||||
/// The clock cannot be more precise than the guest timer, remove the lower bits
|
||||
return new_time_point.accumulated_ticks & inaccuracy_mask;
|
||||
return new_time_point.accumulated_ticks;
|
||||
}
|
||||
|
||||
void NativeClock::Pause(bool is_paused) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue