From e0364392c7f8f1c763a310b98b806a252f88f9e9 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Wed, 5 Dec 2001 21:38:08 +0000 Subject: [PATCH] don't print the highchars flag --- qw/source/console.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/qw/source/console.c b/qw/source/console.c index 301f17f49..c88563a82 100644 --- a/qw/source/console.c +++ b/qw/source/console.c @@ -380,7 +380,10 @@ Con_Print (const char *fmt, va_list args) } // echo to debugging console - fputs (txt, stdout); + if (txt[0] > 2) + fputs (txt, stdout); + else if (txt[0]) + fputs (txt + 1, stdout); } /* DRAWING */