From cbc3bc500fca311d94aafcb406ded6c9f6e74cbb Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 20 Apr 2019 09:04:03 +0200 Subject: [PATCH] - fixed inverted logic for displaying the generic log in Strife. --- wadsrc/static/zscript/ui/statusbar/strife_sbar.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/ui/statusbar/strife_sbar.zs b/wadsrc/static/zscript/ui/statusbar/strife_sbar.zs index c2318ef44..5adf3ee6e 100644 --- a/wadsrc/static/zscript/ui/statusbar/strife_sbar.zs +++ b/wadsrc/static/zscript/ui/statusbar/strife_sbar.zs @@ -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 ()