SDL_mixer: music_xmp.c: updated error message for missing framework (1d176)

From 1d17670081a7a5f6c798605b4bed371e85d7d080 Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Fri, 25 Aug 2023 17:01:50 +0300
Subject: [PATCH] music_xmp.c: updated error message for missing framework

---
 src/codecs/music_xmp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/codecs/music_xmp.c b/src/codecs/music_xmp.c
index 8a397c26..6ca237a9 100644
--- a/src/codecs/music_xmp.c
+++ b/src/codecs/music_xmp.c
@@ -73,7 +73,7 @@ static xmp_loader libxmp;
 #else
 #define FUNCTION_LOADER(FUNC, SIG) \
     libxmp.FUNC = FUNC; \
-    if (libxmp.FUNC == NULL) { Mix_SetError("Missing xmp_lite.framework"); return -1; }
+    if (libxmp.FUNC == NULL) { Mix_SetError("Missing xmp.framework"); return -1; }
 #endif
 
 static int XMP_Load(void)