diff options
author | Tim Angus <tim@ngus.net> | 2010-12-10 22:28:49 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:49 +0000 |
commit | 28b3eefd702c149afc5dd56bc408803de06b7ce5 (patch) | |
tree | aa5c566adb58b3ea6842eeea9c65a71b47b78a23 /src/cgame/cg_main.c | |
parent | 1ae8c55f4750424e85f564cbf2b00f016d1c1f11 (diff) |
* Remove used limit parameter from UI_Text_[Width|Height]
Diffstat (limited to 'src/cgame/cg_main.c')
-rw-r--r-- | src/cgame/cg_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgame/cg_main.c b/src/cgame/cg_main.c index 8044dca9..a296aade 100644 --- a/src/cgame/cg_main.c +++ b/src/cgame/cg_main.c @@ -1575,7 +1575,7 @@ static int CG_OwnerDrawWidth( int ownerDraw, float scale ) switch( ownerDraw ) { case CG_KILLER: - return UI_Text_Width( CG_GetKillerText( ), scale, 0 ); + return UI_Text_Width( CG_GetKillerText( ), scale ); break; } |