diff options
| author | 2020-03-28 15:40:57 -0400 | |
|---|---|---|
| committer | 2020-06-27 11:36:01 -0400 | |
| commit | a7ecd9e19cd2d46768c7c55e1aa7f5e4870d7c9e (patch) | |
| tree | 2bafe9b30f876a02cd472de0e150286d009db70b /src/core/perf_stats.cpp | |
| parent | SingleCore: Use Cycle Timing instead of Host Timing. (diff) | |
| download | yuzu-a7ecd9e19cd2d46768c7c55e1aa7f5e4870d7c9e.tar.gz yuzu-a7ecd9e19cd2d46768c7c55e1aa7f5e4870d7c9e.tar.xz yuzu-a7ecd9e19cd2d46768c7c55e1aa7f5e4870d7c9e.zip | |
FrameLimiting: Enable frame limiting for single core.
Diffstat (limited to 'src/core/perf_stats.cpp')
| -rw-r--r-- | src/core/perf_stats.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/perf_stats.cpp b/src/core/perf_stats.cpp index f1ae9d4df..9f3a6b811 100644 --- a/src/core/perf_stats.cpp +++ b/src/core/perf_stats.cpp | |||
| @@ -119,7 +119,7 @@ double PerfStats::GetLastFrameTimeScale() { | |||
| 119 | } | 119 | } |
| 120 | 120 | ||
| 121 | void FrameLimiter::DoFrameLimiting(microseconds current_system_time_us) { | 121 | void FrameLimiter::DoFrameLimiting(microseconds current_system_time_us) { |
| 122 | if (!Settings::values.use_frame_limit) { | 122 | if (!Settings::values.use_frame_limit || Settings::values.use_multi_core) { |
| 123 | return; | 123 | return; |
| 124 | } | 124 | } |
| 125 | 125 | ||