SDL_image: You don't need to specify which decode libraries will be downloaded

From 80e434a863471de640f871a92af317fcbf1dee94 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Fri, 20 May 2022 09:31:04 -0700
Subject: [PATCH] You don't need to specify which decode libraries will be
 downloaded

---
 Xcode/config.xcconfig | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Xcode/config.xcconfig b/Xcode/config.xcconfig
index 390d4a2..98ac178 100644
--- a/Xcode/config.xcconfig
+++ b/Xcode/config.xcconfig
@@ -7,16 +7,16 @@
 // https://help.apple.com/xcode/#/dev745c5c974
 
 // Uncomment these lines to enable AVIF support
-// If you do this, you should run external/download.sh to download the AVIF decode library and add avif.framework to your application bundle.
+// If you do this, you should run external/download.sh to download the decode libraries and add avif.framework to your application bundle.
 //GCC_PREPROCESSOR_DEFINITIONS = $(inherited) -DLOAD_AVIF
 //OTHER_LDFLAGS = $(inherited) -weak_framework avif
 
 // Uncomment these lines to enable JPEG-XL support
-// If you do this, you should run external/download.sh to download the JPEG-XL decode library and add jxl.framework to your application bundle.
+// If you do this, you should run external/download.sh to download the decode libraries and add jxl.framework to your application bundle.
 //GCC_PREPROCESSOR_DEFINITIONS = $(inherited) -DLOAD_JXL
 //OTHER_LDFLAGS = $(inherited) -weak_framework jxl
 
 // Uncomment these lines to enable WebP support
-// If you do this, you should run external/download.sh to download the WebP decode library and add webp.framework to your application bundle.
+// If you do this, you should run external/download.sh to download the decode libraries and add webp.framework to your application bundle.
 //GCC_PREPROCESSOR_DEFINITIONS = $(inherited) -DLOAD_WEBP
 //OTHER_LDFLAGS = $(inherited) -weak_framework webp