From 3906d5cfb08f8de3259ba993d56a34473faef9fa Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 17 Apr 2021 23:43:16 +0200 Subject: [PATCH] - fixed: the fullscreen color blends did not set their command's screenFade member. Since this remained 0, those blends lost their color. --- source/common/2d/v_2ddrawer.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/source/common/2d/v_2ddrawer.cpp b/source/common/2d/v_2ddrawer.cpp index 911c5d7ee..1a14683e7 100644 --- a/source/common/2d/v_2ddrawer.cpp +++ b/source/common/2d/v_2ddrawer.cpp @@ -942,6 +942,7 @@ void F2DDrawer::AddColorOnlyQuad(int x1, int y1, int w, int h, PalEntry color, F { // Only needed by Raze's fullscreen blends because they are being calculated late when half of the 2D content has already been submitted, // This ensures they are below the HUD, not above it. + dg.mScreenFade = screenFade; mData.Insert(0, dg); } }