mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #1497 from lioncash/host
Host: Kill off Host_SysMessage
This commit is contained in:
@ -435,20 +435,6 @@ void DolphinApp::OnFatalException()
|
||||
// ------------
|
||||
// Talk to GUI
|
||||
|
||||
void Host_SysMessage(const char *fmt, ...)
|
||||
{
|
||||
va_list list;
|
||||
char msg[512];
|
||||
|
||||
va_start(list, fmt);
|
||||
vsprintf(msg, fmt, list);
|
||||
va_end(list);
|
||||
|
||||
if (msg[strlen(msg)-1] == '\n') msg[strlen(msg)-1] = 0;
|
||||
//wxMessageBox(StrToWxStr(msg));
|
||||
PanicAlert("%s", msg);
|
||||
}
|
||||
|
||||
bool wxMsgAlert(const char* caption, const char* text, bool yes_no, int /*Style*/)
|
||||
{
|
||||
#ifdef __WXGTK__
|
||||
|
Reference in New Issue
Block a user