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:
JosJuice
2015-06-04 13:23:58 +02:00
parent 95a2abc1ce
commit 030d467d62
10 changed files with 16 additions and 16 deletions

View File

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