comparison src/SDL_loadso.c @ 708:d0d50f2b044c

Fixed building SDL_loadso.c on MacOS Classic
author Sam Lantinga <slouken@libsdl.org>
date Sat, 30 Aug 2003 22:20:07 +0000
parents c67d4fb10a45
children b8d311d90021
comparison
equal deleted inserted replaced
707:c67d4fb10a45 708:d0d50f2b044c
201 library_id = (image_id)handle; 201 library_id = (image_id)handle;
202 unload_add_on(library_id); 202 unload_add_on(library_id);
203 #elif defined(macintosh) 203 #elif defined(macintosh)
204 /* * */ 204 /* * */
205 library_id = (CFragConnectionID)handle; 205 library_id = (CFragConnectionID)handle;
206 CloseConnection(library_id); 206 CloseConnection(&library_id);
207 #elif defined(__MINT__) && defined(ENABLE_LDG) 207 #elif defined(__MINT__) && defined(ENABLE_LDG)
208 /* * */ 208 /* * */
209 ldg_close((LDG *)handle, ldg_global); 209 ldg_close((LDG *)handle, ldg_global);
210 #endif /* system type */ 210 #endif /* system type */
211 } 211 }