From 6b4483d062c0e1be35ec2724d1e99beaa7bda3a8 Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Sat, 24 Oct 2009 09:20:08 +0000 Subject: * Fix location hud item from truncating text when it shouldnt, which was only happening on higher resolutions for some crazy reason --- src/cgame/cg_draw.c | 8 ++++++-- 1 file 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 ); } -- cgit