diff --git a/Source/Core/DolphinWX/Src/Main.cpp b/Source/Core/DolphinWX/Src/Main.cpp index 3d2e94cb2a..9bee5388ee 100644 --- a/Source/Core/DolphinWX/Src/Main.cpp +++ b/Source/Core/DolphinWX/Src/Main.cpp @@ -460,6 +460,7 @@ void Host_UpdateGUI() } #endif +// g_VideoInitialize.pSysMessage() goes here void Host_SysMessage(const char *fmt, ...) { va_list list; @@ -470,7 +471,8 @@ void Host_SysMessage(const char *fmt, ...) va_end(list); if (msg[strlen(msg)-1] == '\n') msg[strlen(msg)-1] = 0; - wxMessageBox(wxString::FromAscii(msg)); + //wxMessageBox(wxString::FromAscii(msg)); + PanicAlert("%s", msg); } void Host_SetWiiMoteConnectionState(int _State)