(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)
authorbjarni
Thu, 28 Jul 2005 08:45:57 +0000
changeset 2215 062de758687f
parent 2214 75d037f8dcc4
child 2216 51a715447fc4
(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)
unix.c
--- a/unix.c	Thu Jul 28 06:09:15 2005 +0000
+++ b/unix.c	Thu Jul 28 08:45:57 2005 +0000
@@ -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