pl_linux.c (PL_ErrorDialog): print to stderr. append a '\n' to the message.

updated the todo note.


git-svn-id: http://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@80 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
sezero 2010-02-20 21:04:29 +00:00
parent 3e0d921c81
commit d44053c8bf

View file

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