[Quest-ed-checkins] CVS: quest-3b/src/fe/gtk/gl g_int.c,1.3,1.4
Brought to you by:
alexm
|
From: Alexander M. <al...@us...> - 2002-05-18 18:38:19
|
Update of /cvsroot/quest-ed/quest-3b/src/fe/gtk/gl
In directory usw-pr-cvs1:/tmp/cvs-serv31207/src/fe/gtk/gl
Modified Files:
g_int.c
Log Message:
Only print the message if it's not NULL.
Index: g_int.c
===================================================================
RCS file: /cvsroot/quest-ed/quest-3b/src/fe/gtk/gl/g_int.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -r1.3 -r1.4
*** g_int.c 18 May 2002 18:12:12 -0000 1.3
--- g_int.c 18 May 2002 18:38:14 -0000 1.4
***************
*** 208,212 ****
flags=pflags;
! S_NewMessage("%s",msg);
S_process_key=S_process_mouse=0;
--- 208,213 ----
flags=pflags;
! if (msg)
! S_NewMessage("%s",msg);
S_process_key=S_process_mouse=0;
|