(svn r3458) -Fix: forgot one instance in last commit
authortruelight
Sat, 28 Jan 2006 11:09:16 +0000
changeset 2903 db2cfe04de2e
parent 2902 2800aa0bd3ce
child 2904 c584bd15df15
(svn r3458) -Fix: forgot one instance in last commit
sdl.c
--- a/sdl.c	Sat Jan 28 11:08:07 2006 +0000
+++ b/sdl.c	Sat Jan 28 11:09:16 2006 +0000
@@ -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;
 }