- Fixed: Having a WrapWidth doesn't do much good if you never use it.

SVN r3964 (trunk)
This commit is contained in:
Randy Heit 2012-11-10 22:45:15 +00:00
parent a71736b598
commit e3b95a99e9
1 changed files with 1 additions and 1 deletions

View File

@ -277,7 +277,7 @@ void DHUDMessage::ResetText (const char *text)
if (HUDWidth != 0) if (HUDWidth != 0)
{ {
width = ClipWidth == 0 ? HUDWidth : ClipWidth; width = WrapWidth == 0 ? HUDWidth : WrapWidth;
} }
else else
{ {