Skip to content

Commit

Permalink
CPU: Fix DCIC not being cleared on reset
Browse files Browse the repository at this point in the history
Stops interpreter mode being unintentionally forced after
restarting some games.
  • Loading branch information
stenzek committed Dec 23, 2024
1 parent 18c509a commit ac05c35
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/core/cpu_core.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ void CPU::Reset()
g_state.cop0_regs.BDAM = 0;
g_state.cop0_regs.BPCM = 0;
g_state.cop0_regs.EPC = 0;
g_state.cop0_regs.dcic.bits = 0;
g_state.cop0_regs.sr.bits = 0;
g_state.cop0_regs.cause.bits = 0;

Expand Down

0 comments on commit ac05c35

Please sign in to comment.