From 49965b7f1d699c5ae4ed6479b9fd847de6e8e2c1 Mon Sep 17 00:00:00 2001 From: "Unknown W. Brackets" Date: Sun, 20 Jan 2013 21:48:38 -0800 Subject: [PATCH] Decrement downcount in the interpreter. --- Core/MIPS/MIPSTables.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/MIPS/MIPSTables.cpp b/Core/MIPS/MIPSTables.cpp index f30413c8a3..97d277b5a8 100644 --- a/Core/MIPS/MIPSTables.cpp +++ b/Core/MIPS/MIPSTables.cpp @@ -995,6 +995,7 @@ int MIPSInterpret_RunUntil(u64 globalTicks) } } + curMips->downcount -= 1; if (CoreTiming::GetTicks() > globalTicks) { // DEBUG_LOG(CPU, "Hit the max ticks, bailing 1 : %llu, %llu", globalTicks, CoreTiming::GetTicks());