Procházet zdrojové kódy

changed function params formatting (#5160)

pull/5163/head
wileyanderssen před 5 měsíci
odevzdal GitHub
rodič
revize
fce888c0c0
V databázi nebyl nalezen žádný známý klíč pro tento podpis ID GPG klíče: B5690EEEBB952194
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      src/rtextures.c

+ 1
- 1
src/rtextures.c Zobrazit soubor

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

Načítá se…
Zrušit
Uložit