mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-27 08:15:33 +01:00
Merge pull request #7093 from lioncash/log
Interpreter_SystemRegisters: Change PanicAlert to INFO_LOG in mtspr()
This commit is contained in:
commit
d23c3e9524
@ -405,7 +405,7 @@ void Interpreter::mtspr(UGeckoInstruction inst)
|
|||||||
case SPR_DEC:
|
case SPR_DEC:
|
||||||
if (!(old_value >> 31) && (rGPR[inst.RD] >> 31)) // top bit from 0 to 1
|
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;
|
PowerPC::ppcState.Exceptions |= EXCEPTION_DECREMENTER;
|
||||||
}
|
}
|
||||||
SystemTimers::DecrementerSet();
|
SystemTimers::DecrementerSet();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user