Host: Kill off Host_SysMessage

Equivalent facilities already exist.
This commit is contained in:
Lioncash
2014-11-05 02:22:33 -05:00
parent a66b34cfc6
commit 884ec2ed13
9 changed files with 34 additions and 97 deletions

View File

@ -13,20 +13,6 @@
#include "DolphinQt/MainWindow.h"
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';
PanicAlert("%s", msg);
}
void Host_Message(int id)
{
// TODO