From 423494381e9366d86b819e5a7c75c0a962444c1a Mon Sep 17 00:00:00 2001 From: Jaime Passos Date: Sat, 16 May 2020 14:01:42 -0300 Subject: [PATCH] Fix mistake --- src/r_data.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/r_data.c b/src/r_data.c index fc783ad17..302d2ea57 100644 --- a/src/r_data.c +++ b/src/r_data.c @@ -322,12 +322,12 @@ UINT32 ASTBlendTexturePixel(RGBA_t background, RGBA_t foreground, int style, UIN { // Is the patch way too translucent? Don't blend then. if (alpha < ASTTextureBlendingThreshold[0]) - return background; + return background.rgba; - return foreground; + return ASTBlendPixel(background, foreground, style, alpha); } else // just copy the pixel - return foreground; + return foreground.rgba; } else return ASTBlendPixel(background, foreground, style, alpha);