diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2011-02-26 18:58:43 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:18:02 +0000 |
commit | c39f29dc3a1747113a271fde74ba064626f915ea (patch) | |
tree | b09d5b53f973cfc96c656291394c83cc1a08d22c /src/cgame | |
parent | f1085879e51d2fb79c06940fb9b218dc61726dc5 (diff) |
* Silence dumb compiler warning
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgame/cg_draw.c b/src/cgame/cg_draw.c index f6950cae..7487a6fc 100644 --- a/src/cgame/cg_draw.c +++ b/src/cgame/cg_draw.c @@ -693,7 +693,7 @@ static void CG_DrawPlayerAmmoValue( rectDef_t *rect, vec4_t color ) scale = 0.36; else if( len == 8 ) scale = 0.33; - else if( len >= 9 ) + else scale = 0.31; CG_AlignText( rect, text, scale, 0.0f, 0.0f, ALIGN_RIGHT, VALIGN_CENTER, &tx, &ty ); |