1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 16:58:29 +00:00

Added missing finalization in ImageBrush

This commit is contained in:
Darth Affe 2016-06-03 21:27:47 +02:00
parent ec9eb7aef0
commit d7d34988be

View File

@ -76,7 +76,7 @@ namespace CUE.NET.Brushes
x = Math.Max(0, Math.Min(x, Image.Width - 1));
y = Math.Max(0, Math.Min(y, Image.Height - 1));
return Image.GetPixel(x, y);
return FinalizeColor(Image.GetPixel(x, y));
}
#endregion