From 72ca41b9bf0a950b37863c788ea64e71d83443dc Mon Sep 17 00:00:00 2001 From: Tillmann Karras Date: Tue, 31 Aug 2021 01:46:49 +0100 Subject: [PATCH] DSPInterpreter: fix off-by-one errors in cycle counting --- .../Core/Core/DSP/Interpreter/DSPInterpreter.cpp | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Source/Core/Core/DSP/Interpreter/DSPInterpreter.cpp b/Source/Core/Core/DSP/Interpreter/DSPInterpreter.cpp index d0cb74f764..88e6f2ce65 100644 --- a/Source/Core/Core/DSP/Interpreter/DSPInterpreter.cpp +++ b/Source/Core/Core/DSP/Interpreter/DSPInterpreter.cpp @@ -76,7 +76,7 @@ int Interpreter::RunCyclesThread(int cycles) Step(); cycles--; - if (cycles < 0) + if (cycles <= 0) return 0; } } @@ -99,7 +99,7 @@ int Interpreter::RunCyclesDebug(int cycles) } Step(); cycles--; - if (cycles < 0) + if (cycles <= 0) return 0; } @@ -123,7 +123,7 @@ int Interpreter::RunCyclesDebug(int cycles) Step(); cycles--; - if (cycles < 0) + if (cycles <= 0) return 0; } @@ -137,7 +137,7 @@ int Interpreter::RunCyclesDebug(int cycles) } Step(); cycles--; - if (cycles < 0) + if (cycles <= 0) return 0; // We don't bother directly supporting pause - if the main emu pauses, // it just won't call this function anymore. @@ -160,7 +160,7 @@ int Interpreter::RunCycles(int cycles) Step(); cycles--; - if (cycles < 0) + if (cycles <= 0) return 0; } @@ -179,7 +179,7 @@ int Interpreter::RunCycles(int cycles) Step(); cycles--; - if (cycles < 0) + if (cycles <= 0) return 0; } @@ -188,7 +188,7 @@ int Interpreter::RunCycles(int cycles) { Step(); cycles--; - if (cycles < 0) + if (cycles <= 0) return 0; // We don't bother directly supporting pause - if the main emu pauses, // it just won't call this function anymore.