Procházet zdrojové kódy

Review code formatting

raysan5 před 4 roky
rodič
revize
9ed29725a0
1 změnil soubory, kde provedl 1 přidání a 2 odebrání
  1. 1 2
      src/textures.c

+ 1 - 2
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