mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 06:34:19 +00:00
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:
parent
6002611c80
commit
6876997110
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue