- make DI_ALPHAMAPPED change the style to STYLE_Shaded in the status bar drawer

This commit is contained in:
Rachael Alexanderson 2021-05-07 03:41:00 -04:00
parent c51af868de
commit bc15ded2a1

View file

@ -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);
}