From acaaf8598914bb890fad03bdc8ba9879e07ec839 Mon Sep 17 00:00:00 2001 From: black Date: Sat, 11 Jun 2005 18:12:42 +0000 Subject: [PATCH] Missing ';' :( git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5425 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_screen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl_screen.c b/cl_screen.c index 94f685e0..ef2bf780 100644 --- a/cl_screen.c +++ b/cl_screen.c @@ -123,7 +123,7 @@ void DrawQ_ColoredString( float x, float y, const char *text, int maxlen, float } current++; len--; - } while( len > 0 && '0' <= *current && *current <= '9' ) + } while( len > 0 && '0' <= *current && *current <= '9' ); // set the color color = _draw_colors[colorindex]; // we jump over the color tag -- 2.39.2