From ea00a89cff6968928a3ded32708731871202cb86 Mon Sep 17 00:00:00 2001 From: JordanTheToaster Date: Sun, 11 Feb 2024 15:24:16 +0000 Subject: [PATCH] Interpreter: Comment cleanup --- pcsx2/Interpreter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/Interpreter.cpp b/pcsx2/Interpreter.cpp index 5f012a486e..56fe619630 100644 --- a/pcsx2/Interpreter.cpp +++ b/pcsx2/Interpreter.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" @@ -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;