Interpreter: Comment cleanup

This commit is contained in:
JordanTheToaster 2024-02-11 15:24:16 +00:00 committed by refractionpcsx2
parent 418a97a02a
commit ea00a89cff
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
// SPDX-FileCopyrightText: 2002-2023 PCSX2 Dev Team
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
// SPDX-License-Identifier: LGPL-3.0+
#include "Common.h"
@ -40,7 +40,7 @@ void intUpdateCPUCycles()
else if (cyclerate == 1)
scale_cycles = (cpuBlockCycles >> 3) / 1.3f; // Adds a mild 30% increase in clockspeed for value 1.
else if (cyclerate == -1) // the mildest value which is also used by the "balanced" preset.
else if (cyclerate == -1) // the mildest value.
// These values were manually tuned to yield mild speedup with high compatibility
scale_cycles = (cpuBlockCycles <= 80 || cpuBlockCycles > 168 ? 5 : 7) * cpuBlockCycles / 32;