Skip to content

Commit

Permalink
Merge pull request #7093 from lioncash/log
Browse files Browse the repository at this point in the history
Interpreter_SystemRegisters: Change PanicAlert to INFO_LOG in mtspr()
  • Loading branch information
leoetlino committed Jun 7, 2018
2 parents de0fe0e + 5db2137 commit d23c3e9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -405,7 +405,7 @@ void Interpreter::mtspr(UGeckoInstruction inst)
case SPR_DEC:
if (!(old_value >> 31) && (rGPR[inst.RD] >> 31)) // top bit from 0 to 1
{
PanicAlert("Interesting - Software triggered Decrementer exception");
INFO_LOG(POWERPC, "Software triggered Decrementer exception");
PowerPC::ppcState.Exceptions |= EXCEPTION_DECREMENTER;
}
SystemTimers::DecrementerSet();
Expand Down

0 comments on commit d23c3e9

Please sign in to comment.