diff options
author | truelight <truelight@openttd.org> | 2006-01-28 11:09:16 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2006-01-28 11:09:16 +0000 |
commit | 0bcdd910f9b5bf62e26b93b280fe7a1908d83b1d (patch) | |
tree | a5c33a61a1bac4ad12e09fdd31fcb14eaeed0565 | |
parent | 0d010c97e64b4c7df1f201527271b2cccb9e5dae (diff) | |
download | openttd-0bcdd910f9b5bf62e26b93b280fe7a1908d83b1d.tar.xz |
(svn r3458) -Fix: forgot one instance in last commit
-rw-r--r-- | sdl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |