- moved S_NoiseDebug call from FStatusBar::Draw to FStatusBar::DrawTopStuff so that it also gets drawn with the alternative HUD and stays on top of other HUD content.

SVN r3520 (trunk)
This commit is contained in:
Christoph Oelckers 2012-04-06 10:32:27 +00:00
parent 7642aba6ce
commit f6817f9544
1 changed files with 5 additions and 5 deletions

View File

@ -1358,11 +1358,6 @@ void DBaseStatusBar::Draw (EHudState state)
}
}
}
if (noisedebug)
{
S_NoiseDebug ();
}
}
@ -1467,6 +1462,11 @@ void DBaseStatusBar::DrawTopStuff (EHudState state)
DrawConsistancy ();
if (ShowLog && MustDrawLog(state)) DrawLog ();
if (noisedebug)
{
S_NoiseDebug ();
}
}
//---------------------------------------------------------------------------