Skip to content

Commit

Permalink
fix drc toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
skyfloogle committed Apr 16, 2024
1 parent 3ccfb14 commit 30211ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/common/interpreter.c
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ int interpreter_run() {
return DRC_ERR_BAD_PC;
}
last_PC = PC;
} while (!v810_state->ret && (DRC_AVAILABLE || (PC & 0x07000000) != 0x07000000));
} while (!v810_state->ret && (!DRC_AVAILABLE || (PC & 0x07000000) != 0x07000000));
v810_state->PC = PC;
v810_state->cycles = cycles;
return 0;
Expand Down

0 comments on commit 30211ed

Please sign in to comment.