diff options
| author | 2023-03-10 13:55:11 -0500 | |
|---|---|---|
| committer | 2023-03-10 13:55:11 -0500 | |
| commit | 021af4fd0016c49009e3c1ff51ff73aba75b9eb4 (patch) | |
| tree | c589832d3b517d96dae79b7263b92fe69a3457ba /src/core/perf_stats.cpp | |
| parent | Merge pull request #9916 from liamwhite/fpu (diff) | |
| parent | perf_stats: Check multicore first (diff) | |
| download | yuzu-021af4fd0016c49009e3c1ff51ff73aba75b9eb4.tar.gz yuzu-021af4fd0016c49009e3c1ff51ff73aba75b9eb4.tar.xz yuzu-021af4fd0016c49009e3c1ff51ff73aba75b9eb4.zip | |
Merge pull request #9917 from Morph1984/the-real-time
native_clock: Re-adjust the RDTSC frequency to its real frequency
Diffstat (limited to 'src/core/perf_stats.cpp')
| -rw-r--r-- | src/core/perf_stats.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/perf_stats.cpp b/src/core/perf_stats.cpp index f09c176f8..1231c0dc8 100644 --- a/src/core/perf_stats.cpp +++ b/src/core/perf_stats.cpp | |||
| @@ -126,8 +126,8 @@ double PerfStats::GetLastFrameTimeScale() const { | |||
| 126 | } | 126 | } |
| 127 | 127 | ||
| 128 | void SpeedLimiter::DoSpeedLimiting(microseconds current_system_time_us) { | 128 | void SpeedLimiter::DoSpeedLimiting(microseconds current_system_time_us) { |
| 129 | if (!Settings::values.use_speed_limit.GetValue() || | 129 | if (Settings::values.use_multi_core.GetValue() || |
| 130 | Settings::values.use_multi_core.GetValue()) { | 130 | !Settings::values.use_speed_limit.GetValue()) { |
| 131 | return; | 131 | return; |
| 132 | } | 132 | } |
| 133 | 133 | ||