mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00: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:
parent
95a2abc1ce
commit
030d467d62
10 changed files with 16 additions and 16 deletions
|
@ -100,7 +100,7 @@ static void CheckKR(const char* name, kern_return_t kr)
|
|||
{
|
||||
if (kr)
|
||||
{
|
||||
PanicAlertT("%s failed: kr=%x", name, kr);
|
||||
PanicAlert("%s failed: kr=%x", name, kr);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -153,13 +153,13 @@ static void ExceptionThread(mach_port_t port)
|
|||
|
||||
if (msg_in.Head.msgh_id != 2406)
|
||||
{
|
||||
PanicAlertT("unknown message received");
|
||||
PanicAlert("unknown message received");
|
||||
return;
|
||||
}
|
||||
|
||||
if (msg_in.flavor != x86_THREAD_STATE64)
|
||||
{
|
||||
PanicAlertT("unknown flavor %d (expected %d)", msg_in.flavor, x86_THREAD_STATE64);
|
||||
PanicAlert("unknown flavor %d (expected %d)", msg_in.flavor, x86_THREAD_STATE64);
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue