# HG changeset patch # User truelight # Date 1138446556 0 # Node ID 950e834ed9ee8dcb69346d30eb1f7f16eb729d4e # Parent c21c4a134732b3480c455bca29c0667b7fc35501 (svn r3458) -Fix: forgot one instance in last commit diff --git a/sdl.c b/sdl.c --- a/sdl.c +++ b/sdl.c @@ -64,7 +64,7 @@ { if (sdl_proc.SDL_Init != NULL) return NULL; - if (!LoadLibraryList((Function*)&sdl_proc, sdl_files)) + if (!LoadLibraryList((Function *)(void *)&sdl_proc, sdl_files)) return "Unable to load sdl.dll"; return NULL; }