early-access version 3442

This commit is contained in:
pineappleEA 2023-03-08 16:59:00 +01:00
parent 089cce35df
commit 6c134ef361
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
yuzu emulator early access
=============
This is the source code for early-access 3441.
This is the source code for early-access 3442.
## Legal Notice

View file

@ -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;
}