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 | e9519c20b011a86588420b5ab0cd8472d48d7eb3 (patch) | |
tree | a5c33a61a1bac4ad12e09fdd31fcb14eaeed0565 | |
parent | 3cf98b766fff67101f1c8e5dec8c194732ee7b94 (diff) | |
download | openttd-e9519c20b011a86588420b5ab0cd8472d48d7eb3.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; } |