CPU: Fix DCIC not being cleared on reset

Stops interpreter mode being unintentionally forced after
restarting some games.
This commit is contained in:
Stenzek 2024-12-23 23:24:03 +10:00
parent 18c509a679
commit ac05c35292
No known key found for this signature in database
1 changed files with 1 additions and 0 deletions

View File

@ -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;