From 2f2775323fde1ac7307c069621bda024eb16fafb Mon Sep 17 00:00:00 2001 From: bjarni Date: Thu, 28 Jul 2005 08:45:57 +0000 Subject: [PATCH] (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 | 1 + 1 file changed, 1 insertion(+) diff --git a/unix.c b/unix.c index 1a6104a402..e926dca275 100644 --- a/unix.c +++ b/unix.c @@ -39,6 +39,7 @@ ULONG __stack = (1024*1024)*2; // maybe not that much is needed actually ;) #endif #if defined(__APPLE__) +#include //the mac implementation needs this file included in the same file as main() #include "os/macosx/macos.h" #endif