1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-23 06:29:11 +00:00

(svn r980) Fixed issues where MorphOS would get problems if AmigaOS would get a port, since MorphOS also have the flag __AMIGA__ defined (Tokai)

This commit is contained in:
bjarni
2004-12-08 16:27:54 +00:00
parent 5b0743d66b
commit 1f31bee5e4
5 changed files with 11 additions and 3 deletions

View File

@@ -182,4 +182,9 @@ assert_compile(sizeof(uint8) == 1);
#define CloseConnection OTTD_CloseConnection
#endif
#if !(defined(__AMIGA__) && !defined(__MORPHOS__))
// it seems AmigaOS already have a Point declared
#define Point OTTD_AMIGA_POINT
#endif
#endif // !defined(_STDAFX_H)