mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-05 01:11:39 +00:00
Fix mistake
This commit is contained in:
parent
c64e231b2b
commit
423494381e
1 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue