From 1d3b0a20c1cc0f8eda600988f5bcd2fb05fddfbb Mon Sep 17 00:00:00 2001 From: Silent Date: Wed, 13 Jun 2018 20:49:40 +0200 Subject: [PATCH] Fix ColouredZoneName=0 ignoring text alpha --- SilentPatchSA/SilentPatchSA.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SilentPatchSA/SilentPatchSA.cpp b/SilentPatchSA/SilentPatchSA.cpp index 72f14d7..169f3ff 100644 --- a/SilentPatchSA/SilentPatchSA.cpp +++ b/SilentPatchSA/SilentPatchSA.cpp @@ -700,7 +700,7 @@ CRGBA* CRGBA::BlendGangColour_Dynamic(uint8_t r, uint8_t g, uint8_t b, uint8_t a { return BlendGangColour(r, g, b, a); } - *this = HudColour[3]; + *this = CRGBA(HudColour[3], a); return this; }