- 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
1 changed files with 1 additions and 1 deletions

View File

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