mirror of
https://github.com/YGGverse/xash3d-fwgs.git
synced 2025-01-29 16:24:16 +00:00
engine: client: console: remove useless function Con_StringLength
This commit is contained in:
parent
c157b7def3
commit
9a24cb8c96
@ -213,37 +213,6 @@ void Con_ClearTyping( void )
|
|||||||
Cmd_AutoCompleteClear();
|
Cmd_AutoCompleteClear();
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
|
||||||
============
|
|
||||||
Con_StringLength
|
|
||||||
|
|
||||||
skipped color prefixes
|
|
||||||
============
|
|
||||||
*/
|
|
||||||
int Con_StringLength( const char *string )
|
|
||||||
{
|
|
||||||
int len;
|
|
||||||
const char *p;
|
|
||||||
|
|
||||||
if( !string ) return 0;
|
|
||||||
|
|
||||||
len = 0;
|
|
||||||
p = string;
|
|
||||||
|
|
||||||
while( *p )
|
|
||||||
{
|
|
||||||
if( IsColorString( p ))
|
|
||||||
{
|
|
||||||
p += 2;
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
len++;
|
|
||||||
p++;
|
|
||||||
}
|
|
||||||
|
|
||||||
return len;
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
================
|
================
|
||||||
Con_MessageMode_f
|
Con_MessageMode_f
|
||||||
@ -2098,7 +2067,6 @@ void Con_DrawVersion( void )
|
|||||||
|
|
||||||
Con_DrawStringLen( curbuild, &stringLen, &charH );
|
Con_DrawStringLen( curbuild, &stringLen, &charH );
|
||||||
start = refState.width - stringLen * 1.05f;
|
start = refState.width - stringLen * 1.05f;
|
||||||
stringLen = Con_StringLength( curbuild );
|
|
||||||
height -= charH * 1.05f;
|
height -= charH * 1.05f;
|
||||||
|
|
||||||
Con_DrawString( start, height, curbuild, color );
|
Con_DrawString( start, height, curbuild, color );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user