1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-25 07:29:10 +00:00

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

This commit is contained in:
bjarni
2005-07-28 08:45:57 +00:00
parent 21ed40bc53
commit 4a4829fa0e

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