mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- 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:
parent
7642aba6ce
commit
f6817f9544
1 changed files with 5 additions and 5 deletions
|
@ -1358,11 +1358,6 @@ void DBaseStatusBar::Draw (EHudState state)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (noisedebug)
|
|
||||||
{
|
|
||||||
S_NoiseDebug ();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -1467,6 +1462,11 @@ void DBaseStatusBar::DrawTopStuff (EHudState state)
|
||||||
|
|
||||||
DrawConsistancy ();
|
DrawConsistancy ();
|
||||||
if (ShowLog && MustDrawLog(state)) DrawLog ();
|
if (ShowLog && MustDrawLog(state)) DrawLog ();
|
||||||
|
|
||||||
|
if (noisedebug)
|
||||||
|
{
|
||||||
|
S_NoiseDebug ();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//---------------------------------------------------------------------------
|
//---------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue