don't print the highchars flag

This commit is contained in:
Bill Currie 2001-12-05 21:38:08 +00:00
parent 8c9daf023e
commit e0364392c7
1 changed files with 4 additions and 1 deletions

View File

@ -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 */