From 67560296c697914f6bf809dca2ab555038b19aa2 Mon Sep 17 00:00:00 2001
From: Morph <39850852+Morph1984@users.noreply.github.com>
Date: Tue, 7 Mar 2023 23:11:01 -0500
Subject: [PATCH] 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.
---
 src/core/perf_stats.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/core/perf_stats.cpp b/src/core/perf_stats.cpp
index f09c176f81..1231c0dc87 100644
--- a/src/core/perf_stats.cpp
+++ b/src/core/perf_stats.cpp
@@ -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;
     }