Fix mistake

This commit is contained in:
Jaime Passos 2020-05-16 14:01:42 -03:00
parent c64e231b2b
commit 423494381e
1 changed files with 3 additions and 3 deletions

View File

@ -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. // Is the patch way too translucent? Don't blend then.
if (alpha < ASTTextureBlendingThreshold[0]) if (alpha < ASTTextureBlendingThreshold[0])
return background; return background.rgba;
return foreground; return ASTBlendPixel(background, foreground, style, alpha);
} }
else // just copy the pixel else // just copy the pixel
return foreground; return foreground.rgba;
} }
else else
return ASTBlendPixel(background, foreground, style, alpha); return ASTBlendPixel(background, foreground, style, alpha);