From c22ac16b814e46671ca10e013c5da00c718f4c0c Mon Sep 17 00:00:00 2001
From: Ozkan Sezer <[EMAIL REDACTED]>
Date: Fri, 25 Aug 2023 17:01:24 +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 7f52d286..ec5f92a4 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)