From 418a97a02ac63bcb6915527281518e7e8d593cea Mon Sep 17 00:00:00 2001 From: JordanTheToaster Date: Sun, 11 Feb 2024 15:23:53 +0000 Subject: [PATCH] R5900: Comment cleanup --- pcsx2/x86/ix86-32/iR5900.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/x86/ix86-32/iR5900.cpp b/pcsx2/x86/ix86-32/iR5900.cpp index 18edc4ee76..0a4230f624 100644 --- a/pcsx2/x86/ix86-32/iR5900.cpp +++ b/pcsx2/x86/ix86-32/iR5900.cpp @@ -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;