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); } +