Common/MsgHandler: Remove non-format variants of PanicAlert

They're no longer used.
This commit is contained in:
Pokechu22
2022-01-09 12:44:14 -08:00
parent 82acfa6a46
commit bab3ff0157
9 changed files with 13 additions and 70 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ bool PlatformX11::Init()
m_display = XOpenDisplay(nullptr);
if (!m_display)
{
PanicAlert("No X11 display found");
PanicAlertFmt("No X11 display found");
return false;
}