Commit 56ded773 authored by Sam Lantinga's avatar Sam Lantinga

Fixed building SDL_loadso.c on MacOS Classic

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%40709
parent 8c49a5a0
No preview for this file type
...@@ -203,7 +203,7 @@ void SDL_UnloadObject(void *handle) ...@@ -203,7 +203,7 @@ void SDL_UnloadObject(void *handle)
#elif defined(macintosh) #elif defined(macintosh)
/* * */ /* * */
library_id = (CFragConnectionID)handle; library_id = (CFragConnectionID)handle;
CloseConnection(library_id); CloseConnection(&library_id);
#elif defined(__MINT__) && defined(ENABLE_LDG) #elif defined(__MINT__) && defined(ENABLE_LDG)
/* * */ /* * */
ldg_close((LDG *)handle, ldg_global); ldg_close((LDG *)handle, ldg_global);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment