changeset 2903:950e834ed9ee draft

(svn r3458) -Fix: forgot one instance in last commit
author truelight <truelight@openttd.org>
date Sat, 28 Jan 2006 11:09:16 +0000
parents c21c4a134732
children 9ecfb9e4b51a
files sdl.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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;
 }