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

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;
}