From 9ed29725a0ee1629db7aa25c30b3632a712ce212 Mon Sep 17 00:00:00 2001 From: raysan5 Date: Tue, 29 Dec 2020 20:42:29 +0100 Subject: [PATCH] Review code formatting --- src/textures.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/textures.c b/src/textures.c index 9291ebbe0..7ce13ede7 100644 --- a/src/textures.c +++ b/src/textures.c @@ -2348,8 +2348,7 @@ Rectangle GetImageAlphaBorder(Image image, float threshold) // Clear image background with given color void ImageClearBackground(Image *dst, Color color) { - for (int i = 0; i < dst->width * dst->height; ++i) - ImageDrawPixel(dst, i % dst->width, i / dst->height, color); + for (int i = 0; i < dst->width*dst->height; ++i) ImageDrawPixel(dst, i%dst->width, i/dst->height, color); } // Draw pixel within an image