Common/MsgHandler: Remove non-format variants of PanicAlert

They're no longer used.
This commit is contained in:
Pokechu22
2021-11-10 17:43:24 -08:00
parent 82acfa6a46
commit bab3ff0157
9 changed files with 13 additions and 70 deletions

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