From bc15ded2a1cc9af1eda37405d2485aa5379c11ee Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Fri, 7 May 2021 03:41:00 -0400 Subject: [PATCH] - make `DI_ALPHAMAPPED` change the style to `STYLE_Shaded` in the status bar drawer --- src/common/statusbar/base_sbar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/statusbar/base_sbar.cpp b/src/common/statusbar/base_sbar.cpp index 948b2504b..1dc34da9c 100644 --- a/src/common/statusbar/base_sbar.cpp +++ b/src/common/statusbar/base_sbar.cpp @@ -594,7 +594,7 @@ void DStatusBarCore::DrawGraphic(FGameTexture* tex, double x, double y, int flag DTA_FillColor, (flags & DI_ALPHAMAPPED) ? 0 : -1, DTA_FlipX, !!(flags & DI_MIRROR), DTA_FlipY, !!(flags& DI_MIRRORY), - DTA_LegacyRenderStyle, style, + DTA_LegacyRenderStyle, (flags & DI_ALPHAMAPPED) ? STYLE_Shaded : style, TAG_DONE); }