diff options
| author | 2022-06-28 01:47:00 +0200 | |
|---|---|---|
| committer | 2022-06-28 01:47:00 +0200 | |
| commit | f5c1d7b8c8895b5d6b99685313be9061c8ed8a82 (patch) | |
| tree | 2931943d44a6ddf91ea61c8513e08c674d6dc10c /src/common/x64/native_clock.cpp | |
| parent | Address feedback. (diff) | |
| download | yuzu-f5c1d7b8c8895b5d6b99685313be9061c8ed8a82.tar.gz yuzu-f5c1d7b8c8895b5d6b99685313be9061c8ed8a82.tar.xz yuzu-f5c1d7b8c8895b5d6b99685313be9061c8ed8a82.zip | |
Native Clock: remove inaccuracy mask.
Diffstat (limited to '')
| -rw-r--r-- | src/common/x64/native_clock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/x64/native_clock.cpp b/src/common/x64/native_clock.cpp index 0b89f9ed2..488c8c905 100644 --- a/src/common/x64/native_clock.cpp +++ b/src/common/x64/native_clock.cpp | |||
| @@ -90,7 +90,7 @@ u64 NativeClock::GetRTSC() { | |||
| 90 | } while (!time_point.compare_exchange_weak( | 90 | } while (!time_point.compare_exchange_weak( |
| 91 | current_time_point, new_time_point, std::memory_order_release, std::memory_order_acquire)); | 91 | current_time_point, new_time_point, std::memory_order_release, std::memory_order_acquire)); |
| 92 | /// The clock cannot be more precise than the guest timer, remove the lower bits | 92 | /// The clock cannot be more precise than the guest timer, remove the lower bits |
| 93 | return new_time_point.accumulated_ticks & inaccuracy_mask; | 93 | return new_time_point.accumulated_ticks; |
| 94 | } | 94 | } |
| 95 | 95 | ||
| 96 | void NativeClock::Pause(bool is_paused) { | 96 | void NativeClock::Pause(bool is_paused) { |