summaryrefslogtreecommitdiffhomepage
path: root/src/rtextures.c
diff options
context:
space:
mode:
authorRay <[email protected]>2021-10-06 01:20:46 +0200
committerRay <[email protected]>2021-10-06 01:20:46 +0200
commit8d7f97ee04c1908caf703771bd3576ef5f26b3c1 (patch)
treed3d54c266b45fbdec20d25c6511eda6658a2f92d /src/rtextures.c
parent9a4fb252858d3754f347b22fb88f2d507fc847b3 (diff)
downloadraylib-8d7f97ee04c1908caf703771bd3576ef5f26b3c1.tar.gz
raylib-8d7f97ee04c1908caf703771bd3576ef5f26b3c1.zip
Remove trailing spaces
Diffstat (limited to 'src/rtextures.c')
-rw-r--r--src/rtextures.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rtextures.c b/src/rtextures.c
index 0daf6a71..0c186394 100644
--- a/src/rtextures.c
+++ b/src/rtextures.c
@@ -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)