summaryrefslogtreecommitdiff
path: root/sdl.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2006-01-28 11:09:16 +0000
committertruelight <truelight@openttd.org>2006-01-28 11:09:16 +0000
commit0bcdd910f9b5bf62e26b93b280fe7a1908d83b1d (patch)
treea5c33a61a1bac4ad12e09fdd31fcb14eaeed0565 /sdl.c
parent0d010c97e64b4c7df1f201527271b2cccb9e5dae (diff)
downloadopenttd-0bcdd910f9b5bf62e26b93b280fe7a1908d83b1d.tar.xz
(svn r3458) -Fix: forgot one instance in last commit
Diffstat (limited to 'sdl.c')
-rw-r--r--sdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sdl.c b/sdl.c
index cc0145aab..5a5ca791d 100644
--- a/sdl.c
+++ b/sdl.c
@@ -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;
}