mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 15:31:39 +00:00
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:
parent
3e0d921c81
commit
d44053c8bf
1 changed files with 4 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue