diff options
| author | 2018-08-05 22:12:30 -0400 | |
|---|---|---|
| committer | 2018-08-05 22:12:58 -0400 | |
| commit | 6c567543222651f6116be8ae1fe72ca3323fb85f (patch) | |
| tree | d8afb562d430ae1cb4ffdd345abf6e4a44381eae /src/core/perf_stats.cpp | |
| parent | core_timing: Make GetGlobalTimeUs() return std::chrono::microseconds (diff) | |
| download | yuzu-6c567543222651f6116be8ae1fe72ca3323fb85f.tar.gz yuzu-6c567543222651f6116be8ae1fe72ca3323fb85f.tar.xz yuzu-6c567543222651f6116be8ae1fe72ca3323fb85f.zip | |
perf_stats: Correct literal used for MAX_LAG_TIME_US
ms is shorthand for milliseconds, not microseconds, and given there's no
comment indicating that this was intentional, it probably wasn't.
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 22be6d712..8e09b9b63 100644 --- a/src/core/perf_stats.cpp +++ b/src/core/perf_stats.cpp | |||
| @@ -76,7 +76,7 @@ double PerfStats::GetLastFrameTimeScale() { | |||
| 76 | void FrameLimiter::DoFrameLimiting(microseconds current_system_time_us) { | 76 | void FrameLimiter::DoFrameLimiting(microseconds current_system_time_us) { |
| 77 | // Max lag caused by slow frames. Can be adjusted to compensate for too many slow frames. Higher | 77 | // Max lag caused by slow frames. Can be adjusted to compensate for too many slow frames. Higher |
| 78 | // values increase the time needed to recover and limit framerate again after spikes. | 78 | // values increase the time needed to recover and limit framerate again after spikes. |
| 79 | constexpr microseconds MAX_LAG_TIME_US = 25ms; | 79 | constexpr microseconds MAX_LAG_TIME_US = 25us; |
| 80 | 80 | ||
| 81 | if (!Settings::values.toggle_framelimit) { | 81 | if (!Settings::values.toggle_framelimit) { |
| 82 | return; | 82 | return; |
| @@ -84,7 +84,7 @@ void FrameLimiter::DoFrameLimiting(microseconds current_system_time_us) { | |||
| 84 | 84 | ||
| 85 | auto now = Clock::now(); | 85 | auto now = Clock::now(); |
| 86 | 86 | ||
| 87 | frame_limiting_delta_err += microseconds(current_system_time_us - previous_system_time_us); | 87 | frame_limiting_delta_err += current_system_time_us - previous_system_time_us; |
| 88 | frame_limiting_delta_err -= duration_cast<microseconds>(now - previous_walltime); | 88 | frame_limiting_delta_err -= duration_cast<microseconds>(now - previous_walltime); |
| 89 | frame_limiting_delta_err = | 89 | frame_limiting_delta_err = |
| 90 | std::clamp(frame_limiting_delta_err, -MAX_LAG_TIME_US, MAX_LAG_TIME_US); | 90 | std::clamp(frame_limiting_delta_err, -MAX_LAG_TIME_US, MAX_LAG_TIME_US); |