From aa8424982c4e64a9e700cfb4181efa5a75ea3b5b Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 12 Aug 2017 12:04:40 +0200 Subject: [PATCH] - fixed: The color for untranslated font was missing its alpha channel. --- src/v_font.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/v_font.cpp b/src/v_font.cpp index 1f5c12c9c..30a3f45f6 100644 --- a/src/v_font.cpp +++ b/src/v_font.cpp @@ -766,6 +766,7 @@ FRemapTable *FFont::GetColorTranslation (EColorRange range, PalEntry *color) con if (range >= 0 && range < NumTextColors && range != CR_UNTRANSLATED) { retcolor = TranslationColors[range]; + retcolor.a = 255; } if (color != nullptr) *color = retcolor; }