R5900: Comment cleanup

This commit is contained in:
JordanTheToaster 2024-02-11 15:23:53 +00:00 committed by refractionpcsx2
parent d2830b77ec
commit 418a97a02a
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"
@ -1269,7 +1269,7 @@ static u32 scaleblockcycles_calculation()
else if (cyclerate == 1)
scale_cycles = DEFAULT_SCALED_BLOCKS() / 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 = (s_nBlockCycles <= 80 || s_nBlockCycles > 168 ? 5 : 7) * s_nBlockCycles / 32;