fix image overlay bugs on Linux/Mac (#461)

This commit is contained in:
Jesse Plamondon-Willard 2018-03-23 22:30:49 -04:00
parent 51368b8afb
commit fad47ff74f
2 changed files with 4 additions and 3 deletions

View File

@ -16,8 +16,9 @@
-->
## 2.5.4
* For modders:
* Added automatic texture update for trees when changed through the content API.
* For players:
* Fixed tree textures not updated when changed through the content API.
* Fixed display bugs on Linux/Mac when mods overlay images through the content API.
* For the [log parser][]:
* Fixed error when log text contains certain tokens.

View File

@ -58,7 +58,7 @@ namespace StardewModdingAPI.Framework.Content
for (int i = 0; i < sourceData.Length; i++)
{
Color pixel = sourceData[i];
if (pixel.A != 0) // not transparent
if (pixel.A > 2) // not transparent (note: on Linux/Mac, fully transparent pixels may have an alpha up to 2 for some reason)
newData[i] = pixel;
}
sourceData = newData;