Преглед изворни кода

changed function params formatting (#5160)

wileyanderssen пре 1 недеља
родитељ
комит
fce888c0c0
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/rtextures.c

+ 1 - 1
src/rtextures.c

@@ -1713,7 +1713,7 @@ Image ImageFromChannel(Image image, int selectedChannel)
 }
 
 // Resize and image to new size using Nearest-Neighbor scaling algorithm
-void ImageResizeNN(Image *image,int newWidth,int newHeight)
+void ImageResizeNN(Image *image, int newWidth, int newHeight)
 {
     // Security check to avoid program crash
     if ((image->data == NULL) || (image->width == 0) || (image->height == 0)) return;