Use BIGCHAR_WIDTH instead of hardcoded 16 in cl_scrn.c

This commit is contained in:
Zack Middleton 2011-09-09 21:49:03 +00:00
parent 22d6240fe2
commit 72d00c568b
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ static int SCR_Strlen( const char *str ) {
** SCR_GetBigStringWidth
*/
int SCR_GetBigStringWidth( const char *str ) {
return SCR_Strlen( str ) * 16;
return SCR_Strlen( str ) * BIGCHAR_WIDTH;
}