summaryrefslogtreecommitdiff
path: root/src/video/cocoa/fullscreen.mm
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-05-03 15:46:36 +0000
committerrubidium <rubidium@openttd.org>2009-05-03 15:46:36 +0000
commit5f4eeee5f01e07393ab603d6baa705486d126913 (patch)
tree78bc2a570d26ee48f3034ba40a99c1c92f5a438b /src/video/cocoa/fullscreen.mm
parentd685ca0619cdbaf61623b673d26a2c9aa8b5b85e (diff)
downloadopenttd-5f4eeee5f01e07393ab603d6baa705486d126913.tar.xz
(svn r16221) -Change: support building 64 bits OSX binaries and add optional support for 64 bits binaries in OSX universal binaries. However, do not default to adding 64 bits binaries because benchmarking has shown that they are slower than the 32 bits binaries.
Diffstat (limited to 'src/video/cocoa/fullscreen.mm')
-rw-r--r--src/video/cocoa/fullscreen.mm3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/video/cocoa/fullscreen.mm b/src/video/cocoa/fullscreen.mm
index b011834a4..5cc7784ab 100644
--- a/src/video/cocoa/fullscreen.mm
+++ b/src/video/cocoa/fullscreen.mm
@@ -71,7 +71,10 @@ struct OTTD_QuartzGammaTable {
@implementation NSScreen (NSScreenAccess)
- (void) setFrame:(NSRect)frame;
{
+/* The 64 bits libraries don't seem to know about _frame, so this hack won't work. */
+#if !__LP64__
_frame = frame;
+#endif
}
@end