diff options
author | bunnei <ericbunnie@gmail.com> | 2014-06-05 00:25:32 -0400 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-06-05 00:25:32 -0400 |
commit | 6cdad8390c20aed5c526916816388831d71213a2 (patch) | |
tree | 99db88c8052631a048a9593ecead774b4357c90d /src | |
parent | ce1c56127886fa746b2bda95bf162bf67878e482 (diff) |
arm: fixed a bug where ARM_Interpreter::ExecuteInstructions was actually executing one more instruction than expected
Diffstat (limited to 'src')
-rw-r--r-- | src/core/arm/interpreter/arm_interpreter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/interpreter/arm_interpreter.cpp b/src/core/arm/interpreter/arm_interpreter.cpp index 8030ec56a2..0e893f1821 100644 --- a/src/core/arm/interpreter/arm_interpreter.cpp +++ b/src/core/arm/interpreter/arm_interpreter.cpp @@ -98,7 +98,7 @@ u64 ARM_Interpreter::GetTicks() const { * @param num_instructions Number of instructions to executes */ void ARM_Interpreter::ExecuteInstructions(int num_instructions) { - state->NumInstrsToExecute = num_instructions; + state->NumInstrsToExecute = num_instructions - 1; ARMul_Emulate32(state); } |