From 416fead44754846a4a5d059cac1a6af311fa2cff Mon Sep 17 00:00:00 2001 From: Nik Henson Date: Sun, 7 Aug 2011 01:07:48 +0000 Subject: [PATCH] Fixed mistake in previous commit! --- Src/Model3/SoundBoard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Src/Model3/SoundBoard.cpp b/Src/Model3/SoundBoard.cpp index 157d59e..25b6645 100644 --- a/Src/Model3/SoundBoard.cpp +++ b/Src/Model3/SoundBoard.cpp @@ -337,7 +337,7 @@ void SCSP68KIRQCallback(int irqLevel) // SCSP callback for running the 68K int SCSP68KRunCallback(int numCycles) { - return numCycles - M68KRun(numCycles); + return M68KRun(numCycles) - numCycles; }