From a69c975760cc25316d591032c995ebdd93616953 Mon Sep 17 00:00:00 2001 From: David Reid Date: Sat, 30 Jun 2018 18:23:26 +1000 Subject: [PATCH] Fix SDL backend on Mac. --- mini_al.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mini_al.h b/mini_al.h index a242bd35..3c620978 100644 --- a/mini_al.h +++ b/mini_al.h @@ -16455,8 +16455,8 @@ mal_result mal_context_init__sdl(mal_context* pContext) "SDL2.dll", "SDL.dll" #elif defined(MAL_APPLE) - "libSDL2-2.0.0.dylib", // Can any Mac users out there comfirm these library names? - "libSDL-1.2.0.dylib" + "SDL2.framework/SDL2", + "SDL.framework/SDL" #else "libSDL2-2.0.so.0", "libSDL-1.2.so.0"