diff options
author | rubidium <rubidium@openttd.org> | 2009-03-29 19:55:08 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-03-29 19:55:08 +0000 |
commit | 8293be426cc8e4c6b228f906d00838d02f6edd0a (patch) | |
tree | 416d2b6997d90c7f46c4891e99e681d33b3de66a /src/stdafx.h | |
parent | c2ced41c044946dbc3dbfe0471816fc9d63401f1 (diff) | |
download | openttd-8293be426cc8e4c6b228f906d00838d02f6edd0a.tar.xz |
(svn r15892) -Codechange: [OSX] some type fixes so OpenTTD likes more of the 3.1.x Xcodes.
Diffstat (limited to 'src/stdafx.h')
-rw-r--r-- | src/stdafx.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/stdafx.h b/src/stdafx.h index 619fa81e7..9e0692f46 100644 --- a/src/stdafx.h +++ b/src/stdafx.h @@ -5,6 +5,10 @@ #ifndef STDAFX_H #define STDAFX_H +#if defined(__APPLE__) + #include "os/macosx/osx_stdafx.h" +#endif /* __APPLE__ */ + #if defined(__NDS__) #include <nds/jtypes.h> /* NDS' types for uint32/int32 are based on longs, which causes @@ -104,10 +108,6 @@ #define CLIB_USERGROUP_PROTOS_H #endif /* __MORPHOS__ */ -#if defined(__APPLE__) - #include "os/macosx/osx_stdafx.h" -#endif /* __APPLE__ */ - #if defined(PSP) /* PSP can only have 10 file-descriptors open at any given time, but this * switch only limits reads via the Fio system. So keep 2 fds free for things |