ppcexec: Fix branch check in ppc_exec_single.

This commit is contained in:
joevt 2023-11-23 18:48:15 -08:00 committed by dingusdev
parent 1d9b0f7fa5
commit 60a76e9348
1 changed files with 1 additions and 1 deletions

View File

@ -415,7 +415,7 @@ void ppc_exec_single()
process_events();
if (exec_flags) {
if (exec_flags & EXEF_TIMER) {
if (!(exec_flags & ~EXEF_TIMER)) {
ppc_state.pc += 4;
} else {
ppc_state.pc = ppc_next_instruction_address;