diff --git a/main.cpp b/main.cpp index 3e9e2a6..cb0d302 100644 --- a/main.cpp +++ b/main.cpp @@ -790,7 +790,7 @@ int main(int argc, char **argv) quickinstruction_translate(ppc_state.ppc_pc); ppc_main_opcode(); if (grab_branch & !grab_exception){ - ppc_state.ppc_pc = ppc_effective_address; + ppc_state.ppc_pc = ppc_next_instruction_address; grab_branch = 0; ppc_tbr_update(); } @@ -833,7 +833,7 @@ int main(int argc, char **argv) quickinstruction_translate(ppc_state.ppc_pc); ppc_main_opcode(); if (grab_branch & !grab_exception){ - ppc_state.ppc_pc = ppc_effective_address; + ppc_state.ppc_pc = ppc_next_instruction_address; grab_branch = 0; ppc_tbr_update(); }