mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- Fixed: Having a WrapWidth doesn't do much good if you never use it.
SVN r3964 (trunk)
This commit is contained in:
parent
a71736b598
commit
e3b95a99e9
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue