CPU: Fix DCIC not being cleared on reset
Stops interpreter mode being unintentionally forced after restarting some games.
This commit is contained in:
parent
18c509a679
commit
ac05c35292
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue