1
0
Fork 0

(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)

release/0.4.5
bjarni 2005-07-28 08:45:57 +00:00
parent 21ed40bc53
commit 4a4829fa0e
1 changed files with 1 additions and 0 deletions

1
unix.c
View File

@ -39,6 +39,7 @@ ULONG __stack = (1024*1024)*2; // maybe not that much is needed actually ;)
#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