diff options
-rw-r--r-- | src/heretic/d_main.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/heretic/d_main.c b/src/heretic/d_main.c index a8f8bbe1..d0c06106 100644 --- a/src/heretic/d_main.c +++ b/src/heretic/d_main.c @@ -541,8 +541,11 @@ void drawstatus(void) void status(char *string) { - strcat(smsg, string); - drawstatus(); + if (using_graphical_startup) + { + strcat(smsg, string); + drawstatus(); + } } void DrawThermo(void) |