early-access version 3442
This commit is contained in:
parent
089cce35df
commit
6c134ef361
2 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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 a new issue