Use old bitmap layering method for full background

Closes #3656
Better to show stray pixels than to overwrite-blend semi-transparent downscaled images.
This commit is contained in:
Kurt 2022-11-27 10:56:16 -08:00
parent 6002611c80
commit 6876997110

View file

@ -188,7 +188,7 @@ public static class SpriteUtil
}
if (type == SpriteBackgroundType.FullBackground) // full background
{
return ImageUtil.BlendTransparentTo(img, color, opacBack);
return ImageUtil.ChangeTransparentTo(img, color, opacBack);
}
return img;
}