mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-26 05:51:20 +00:00
- fixed inverted logic for displaying the generic log in Strife.
This commit is contained in:
parent
ef422e44b9
commit
cbc3bc500f
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ class StrifeStatusBar : BaseStatusBar
|
||||||
override bool MustDrawLog(int state)
|
override bool MustDrawLog(int state)
|
||||||
{
|
{
|
||||||
// Tell the base class to draw the log if the pop screen won't be displayed.
|
// Tell the base class to draw the log if the pop screen won't be displayed.
|
||||||
return !generic_ui;
|
return generic_ui;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Reset ()
|
void Reset ()
|
||||||
|
|
Loading…
Reference in a new issue