IOQ3 commit 2358

This commit is contained in:
Richard Allen 2012-12-12 20:00:23 +00:00
parent 976de51c46
commit 9681ac413d

View file

@ -224,14 +224,16 @@ void SCR_DrawStringExt( int x, int y, float size, const char *string, float *set
xx = x;
re.SetColor( setColor );
while ( *s ) {
if ( !noColorEscape && Q_IsColorString( s ) ) {
if ( Q_IsColorString( s ) ) {
if ( !forceColor ) {
Com_Memcpy( color, g_color_table[ColorIndex(*(s+1))], sizeof( color ) );
color[3] = setColor[3];
re.SetColor( color );
}
s += 2;
continue;
if ( !noColorEscape ) {
s += 2;
continue;
}
}
SCR_DrawChar( xx, y, size, *s );
xx += size;