From fc0fb5b107a8644ece025a9e9e51d5b2b83cbaab Mon Sep 17 00:00:00 2001 From: Matt Sylvia Date: Fri, 10 Jan 2025 18:24:12 -0500 Subject: [PATCH] Add missing max_size to ImageEnsureMaxSize --- src/img.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/img.h b/src/img.h index 6feeeef..358eb84 100644 --- a/src/img.h +++ b/src/img.h @@ -56,7 +56,7 @@ void ImageRemoveBlacks(Image* img); void ImageAddBlacks(Image img); // Ensures an image is smaller than a given size. (defined by a macro) -void ImageEnsureMaxSize(Image* img); +void ImageEnsureMaxSize(Image* img, int max_size); // Returns the RectangleInt containing the whole image. RectangleInt GetImageRect(Image img);