summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinQt/Host.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-11-05 02:22:33 -0500
committerLioncash <mathew1800@gmail.com>2014-11-05 02:30:48 -0500
commit884ec2ed13bd47c188317a9b91b8af20876d9919 (patch)
treef35156fde31ae0c362e49642c0de5cced069b0b9 /Source/Core/DolphinQt/Host.cpp
parenta66b34cfc6732ee32c1fca67e07828dd380ee38e (diff)
Host: Kill off Host_SysMessage
Equivalent facilities already exist.
Diffstat (limited to 'Source/Core/DolphinQt/Host.cpp')
-rw-r--r--Source/Core/DolphinQt/Host.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/Source/Core/DolphinQt/Host.cpp b/Source/Core/DolphinQt/Host.cpp
index af10de63c9..4748276ade 100644
--- a/Source/Core/DolphinQt/Host.cpp
+++ b/Source/Core/DolphinQt/Host.cpp
@@ -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