Skip to content

Commit 11090ab

Browse files
authored
[raylib.h] Added space after comma (#4774)
args for ImageResizeNN were missing a space in the arguments after a comma, i just added one.
1 parent b49c079 commit 11090ab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/raylib.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -1365,7 +1365,7 @@ RLAPI void ImageAlphaPremultiply(Image *image);
13651365
RLAPI void ImageBlurGaussian(Image *image, int blurSize); // Apply Gaussian blur using a box blur approximation
13661366
RLAPI void ImageKernelConvolution(Image *image, const float *kernel, int kernelSize); // Apply custom square convolution kernel to image
13671367
RLAPI void ImageResize(Image *image, int newWidth, int newHeight); // Resize image (Bicubic scaling algorithm)
1368-
RLAPI void ImageResizeNN(Image *image, int newWidth,int newHeight); // Resize image (Nearest-Neighbor scaling algorithm)
1368+
RLAPI void ImageResizeNN(Image *image, int newWidth, int newHeight); // Resize image (Nearest-Neighbor scaling algorithm)
13691369
RLAPI void ImageResizeCanvas(Image *image, int newWidth, int newHeight, int offsetX, int offsetY, Color fill); // Resize canvas and fill with color
13701370
RLAPI void ImageMipmaps(Image *image); // Compute all mipmap levels for a provided image
13711371
RLAPI void ImageDither(Image *image, int rBpp, int gBpp, int bBpp, int aBpp); // Dither image data to 16bpp or lower (Floyd-Steinberg dithering)

0 commit comments

Comments
 (0)