Skip to content

Commit

Permalink
Interpreter: Comment cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanTheToaster committed Feb 13, 2024
1 parent 4631dce commit d205257
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcsx2/Interpreter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit d205257

Please sign in to comment.