mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 17:19:44 -06:00
Use PanicAlert instead of PanicAlertT when appropriate
It means less work for the translators... But I'm not too sure about this, because most of these have already been translated.
This commit is contained in:
@ -888,7 +888,7 @@ static void GenerateDSIException(u32 effectiveAddress, bool write)
|
||||
// DSI exceptions are only supported in MMU mode.
|
||||
if (!SConfig::GetInstance().m_LocalCoreStartupParameter.bMMU)
|
||||
{
|
||||
PanicAlertT("Invalid %s to 0x%08x, PC = 0x%08x ", write ? "Write to" : "Read from", effectiveAddress, PC);
|
||||
PanicAlert("Invalid %s to 0x%08x, PC = 0x%08x ", write ? "Write to" : "Read from", effectiveAddress, PC);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user