(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 c4d7c4832813
parent 2214 056bbc3c8236
child 2216 cdedee39cc2b
(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