(svn r3458) -Fix: forgot one instance in last commit

This commit is contained in:
truelight 2006-01-28 11:09:16 +00:00
parent 0d010c97e6
commit 0bcdd910f9
1 changed files with 1 additions and 1 deletions

2
sdl.c
View File

@ -64,7 +64,7 @@ static const char *LoadSdlDLL(void)
{
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;
}