diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-10-24 09:20:08 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:03 +0000 |
commit | 6b4483d062c0e1be35ec2724d1e99beaa7bda3a8 (patch) | |
tree | 2151444e8e917b0d42213adcd965a39e75d00286 | |
parent | f35be923829ed76882a7d5c1b2a7b1a8655187c6 (diff) |
* Fix location hud item from truncating text when it shouldnt, which was only happening on higher resolutions for some crazy reason
-rw-r--r-- | src/cgame/cg_draw.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/cgame/cg_draw.c b/src/cgame/cg_draw.c index 32364783..ab93fd00 100644 --- a/src/cgame/cg_draw.c +++ b/src/cgame/cg_draw.c @@ -2489,11 +2489,15 @@ static void CG_DrawLocation( rectDef_t *rect, float scale, int textalign, vec4_t // need to skip horiz. align if it's too long, but valign must be run either way 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( tx, ty, scale, color, location, 0, 0, ITEM_TEXTSTYLE_NORMAL ); + } else + { CG_AlignText( rect, location, scale, 0.0f, 0.0f, ALIGN_NONE, VALIGN_CENTER, &tx, &ty ); - - UI_Text_Paint_Limit( &maxX, tx, ty, scale, color, location, 0, 0 ); + UI_Text_Paint_Limit( &maxX, tx, ty, scale, color, location, 0, 0 ); + } trap_R_SetColor( NULL ); } |