summaryrefslogtreecommitdiff
path: root/src/os
diff options
context:
space:
mode:
authorPatric Stout <truebrain@openttd.org>2021-05-30 10:40:03 +0200
committerGitHub <noreply@github.com>2021-05-30 10:40:03 +0200
commitbcd7a7aafe3d63117be74580298dcb20a53e4121 (patch)
treef0471f1c24b8f60ff2cde5af6e8d0e63330832e4 /src/os
parent8c273ed598f59e18acb1c0bcbc9bc34beb307ecb (diff)
downloadopenttd-bcd7a7aafe3d63117be74580298dcb20a53e4121.tar.xz
Codechange: rename _SQ64 into POINTER_IS_64BIT (#9313)
Diffstat (limited to 'src/os')
-rw-r--r--src/os/macosx/osx_stdafx.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os/macosx/osx_stdafx.h b/src/os/macosx/osx_stdafx.h
index d90a19c5f..e147fcf74 100644
--- a/src/os/macosx/osx_stdafx.h
+++ b/src/os/macosx/osx_stdafx.h
@@ -73,8 +73,8 @@
#endif
/* Check for mismatching 'architectures' */
-#if !defined(STRGEN) && !defined(SETTINGSGEN) && ((defined(__LP64__) && !defined(_SQ64)) || (!defined(__LP64__) && defined(_SQ64)))
-# error "Compiling 64 bits without _SQ64 set! (or vice versa)"
+#if !defined(STRGEN) && !defined(SETTINGSGEN) && ((defined(__LP64__) && !defined(POINTER_IS_64BIT)) || (!defined(__LP64__) && defined(POINTER_IS_64BIT)))
+# error "Compiling 64 bits without POINTER_IS_64BIT set! (or vice versa)"
#endif
/* Name conflict */