mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2024-11-10 23:02:01 +00:00
Use BIGCHAR_WIDTH instead of hardcoded 16 in cl_scrn.c
This commit is contained in:
parent
22d6240fe2
commit
72d00c568b
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue