From c686e087b36e3c5f7befe395ce2bdd514daecca6 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 26 Feb 2026 23:40:03 +0100 Subject: [PATCH] Update rtextures.c --- src/rtextures.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/rtextures.c b/src/rtextures.c index a134c4659..7cddcb3bc 100644 --- a/src/rtextures.c +++ b/src/rtextures.c @@ -71,31 +71,31 @@ #include // Required for: sprintf() [Used in ExportImageAsCode()] // Support only desired texture formats on stb_image -#if !defined(SUPPORT_FILEFORMAT_BMP) +#if !SUPPORT_FILEFORMAT_BMP #define STBI_NO_BMP #endif -#if !defined(SUPPORT_FILEFORMAT_PNG) +#if !SUPPORT_FILEFORMAT_PNG #define STBI_NO_PNG #endif -#if !defined(SUPPORT_FILEFORMAT_TGA) +#if !SUPPORT_FILEFORMAT_TGA #define STBI_NO_TGA #endif -#if !defined(SUPPORT_FILEFORMAT_JPG) +#if !SUPPORT_FILEFORMAT_JPG #define STBI_NO_JPEG // Image format .jpg and .jpeg #endif -#if !defined(SUPPORT_FILEFORMAT_PSD) +#if !SUPPORT_FILEFORMAT_PSD #define STBI_NO_PSD #endif -#if !defined(SUPPORT_FILEFORMAT_GIF) +#if !SUPPORT_FILEFORMAT_GIF #define STBI_NO_GIF #endif -#if !defined(SUPPORT_FILEFORMAT_PIC) +#if !SUPPORT_FILEFORMAT_PIC #define STBI_NO_PIC #endif -#if !defined(SUPPORT_FILEFORMAT_HDR) +#if !SUPPORT_FILEFORMAT_HDR #define STBI_NO_HDR #endif -#if !defined(SUPPORT_FILEFORMAT_PNM) +#if !SUPPORT_FILEFORMAT_PNM #define STBI_NO_PNM #endif