mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +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)
|
||||
{
|
||||
// Tell the base class to draw the log if the pop screen won't be displayed.
|
||||
return !generic_ui;
|
||||
return generic_ui;
|
||||
}
|
||||
|
||||
void Reset ()
|
||||
|
|
Loading…
Reference in a new issue