mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2024-11-22 19:45:37 +01:00
perf_stats: Check multicore first
SpeedLimiting is SC only. Since MC is performance oriented we should check for it first to skip checking use_speed_limit.
This commit is contained in:
parent
1073346c7f
commit
67560296c6
@ -126,8 +126,8 @@ double PerfStats::GetLastFrameTimeScale() const {
|
||||
}
|
||||
|
||||
void SpeedLimiter::DoSpeedLimiting(microseconds current_system_time_us) {
|
||||
if (!Settings::values.use_speed_limit.GetValue() ||
|
||||
Settings::values.use_multi_core.GetValue()) {
|
||||
if (Settings::values.use_multi_core.GetValue() ||
|
||||
!Settings::values.use_speed_limit.GetValue()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user