Remove trailing spaces

This commit is contained in:
Ray
2021-10-06 01:20:46 +02:00
parent 9a4fb25285
commit 8d7f97ee04
6 changed files with 9 additions and 9 deletions

View File

@@ -2294,7 +2294,7 @@ Rectangle GetImageAlphaBorder(Image image, float threshold)
Color GetImageColor(Image image, int x, int y)
{
Color color = { 0 };
if ((x >=0) && (x < image.width) && (y >= 0) && (y < image.height))
{
switch (image.format)