From 157811e9487a23790b6deb9511a5aa5ed02c0e02 Mon Sep 17 00:00:00 2001 From: Spoike Date: Mon, 17 Jan 2005 17:36:37 +0000 Subject: [PATCH] Fixed say prompt crash. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@799 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/console.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/engine/client/console.c b/engine/client/console.c index 1d7c604d2..28817cc3b 100644 --- a/engine/client/console.c +++ b/engine/client/console.c @@ -1035,6 +1035,7 @@ void Con_DrawNotify (void) } } } + x++; } while(s[x]) @@ -1065,7 +1066,7 @@ void Con_DrawNotify (void) } } - Draw_ColouredCharacter ( (x+skip)<<3, v, s[x]|M_COLOR_WHITE); + Draw_ColouredCharacter ( (x+skip)<<3, v, s[x]|mask); x++; } Draw_ColouredCharacter ( (x+skip)<<3, v, 10+((int)(realtime*con_cursorspeed)&1)|M_COLOR_WHITE);