- fixed inverted logic for displaying the generic log in Strife.

This commit is contained in:
Christoph Oelckers 2019-04-20 09:04:03 +02:00
parent ef422e44b9
commit cbc3bc500f

View file

@ -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 ()