diff options
| author | 2022-07-28 00:47:06 +0100 | |
|---|---|---|
| committer | 2022-07-27 19:47:06 -0400 | |
| commit | 2e461103790110a3deea6425709b1f7f937085ea (patch) | |
| tree | 495ea29aedfefc3564a87c8c4b44ed199d1aad3a /src/common/x64/native_clock.cpp | |
| parent | implement pause on system suspend (#8585) (diff) | |
| download | yuzu-2e461103790110a3deea6425709b1f7f937085ea.tar.gz yuzu-2e461103790110a3deea6425709b1f7f937085ea.tar.xz yuzu-2e461103790110a3deea6425709b1f7f937085ea.zip | |
Revert Coretiming PRs 8531 and 7454 (#8591)
Diffstat (limited to 'src/common/x64/native_clock.cpp')
| -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 6aaa8cdf9..8b08332ab 100644 --- a/src/common/x64/native_clock.cpp +++ b/src/common/x64/native_clock.cpp | |||
| @@ -75,8 +75,8 @@ NativeClock::NativeClock(u64 emulated_cpu_frequency_, u64 emulated_clock_frequen | |||
| 75 | } | 75 | } |
| 76 | 76 | ||
| 77 | u64 NativeClock::GetRTSC() { | 77 | u64 NativeClock::GetRTSC() { |
| 78 | TimePoint current_time_point{}; | ||
| 79 | TimePoint new_time_point{}; | 78 | TimePoint new_time_point{}; |
| 79 | TimePoint current_time_point{}; | ||
| 80 | 80 | ||
| 81 | current_time_point.pack = Common::AtomicLoad128(time_point.pack.data()); | 81 | current_time_point.pack = Common::AtomicLoad128(time_point.pack.data()); |
| 82 | do { | 82 | do { |