Merge pull request #7093 from lioncash/log

Interpreter_SystemRegisters: Change PanicAlert to INFO_LOG in mtspr()
This commit is contained in:
Léo Lam 2018-06-07 19:01:39 +02:00 committed by GitHub
commit d23c3e9524
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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