engine: client: font: fix another inverted check

This commit is contained in:
Alibek Omarov 2023-02-04 21:23:51 +03:00
parent fd63018fb5
commit ba6dd3c751
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ int CL_DrawCharacter( float x, float y, int number, rgba_t color, cl_font_t *fon
return 0;
rc = &font->fontRc[number];
if( font->nearest || font->scale > 1.0f )
if( font->nearest || font->scale <= 1.0f )
half = 0;
s1 = ((float)rc->left + half ) / texw;