diff options
author | Roman Tetelman <kevlarman@gmail.com> | 2009-10-03 12:01:30 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:15:37 +0000 |
commit | 534d680496218529c46367170bfa8b0fab3b98e3 (patch) | |
tree | a7fd99ae4244aefa6fb4306e56b1565892dcce96 /src | |
parent | 3f20e092c741913d4a8f93b07fb08324d830d4e7 (diff) |
* oops
Diffstat (limited to 'src')
-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 6a2007b5..0e79fcef 100644 --- a/src/cgame/cg_draw.c +++ b/src/cgame/cg_draw.c @@ -2265,7 +2265,7 @@ static void CG_DrawLocation( rectDef_t *rect, float scale, int textalign, vec4_t float tx = rect->x, ty = rect->y; maxX = rect->x + rect->w; location = CG_ConfigString( CS_LOCATIONS + cgs.clientinfo[ cg.clientNum ].location ); - if( UI_Text_Width( location, scale, 0 ) < maxX ) + if( UI_Text_Width( location, scale, 0 ) < rect->w ) CG_AlignText( rect, location, scale, 0.0f, 0.0f, textalign, VALIGN_CENTER, &tx, &ty ); UI_Text_Paint_Limit( &maxX, tx, ty, scale, color, location, 0, 0 ); |