changeset 2215:52f412bfae95 draft

(svn r2733) -Fix: [OSX] solved include issue introduced in 2714, which prevented OSX from opening a window to run the game in (sdl.h was not included anymore)
author bjarni <bjarni@openttd.org>
date Thu, 28 Jul 2005 08:45:57 +0000
parents 3598e232cc78
children 9ef48fbdaf28
files unix.c
diffstat 1 files changed, 1 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/unix.c
+++ b/unix.c
@@ -39,6 +39,7 @@
 #endif
 
 #if defined(__APPLE__)
+#include <SDL.h>	//the mac implementation needs this file included in the same file as main()
 #include "os/macosx/macos.h"
 #endif