From e65e0b82920d70a17e8205870d1d7f80deb49609 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Sat, 20 Feb 2010 21:04:29 +0000 Subject: [PATCH] pl_linux.c (PL_ErrorDialog): print to stderr. append a '\n' to the message. updated the todo note. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@80 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/pl_linux.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Quake/pl_linux.c b/Quake/pl_linux.c index 86c02571..5075bb8d 100644 --- a/Quake/pl_linux.c +++ b/Quake/pl_linux.c @@ -33,6 +33,8 @@ void PL_VID_Shutdown (void) void PL_ErrorDialog(char *text) { - // TODO: implement this properly - printf(text); +// TODO: we can dlopen gtk for an error +// dialog window. would it be worth it? + fprintf(stderr, "%s\n", text); } +