From fce888c0c0dab12c21f70143155757b8f2b90f51 Mon Sep 17 00:00:00 2001 From: wileyanderssen Date: Sun, 31 Aug 2025 12:34:39 +0300 Subject: [PATCH] changed function params formatting (#5160) --- src/rtextures.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rtextures.c b/src/rtextures.c index 81d615c38..624cf574a 100644 --- a/src/rtextures.c +++ b/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;