From aa23e81cca85daff2bab4562f6d6f7287dc4a3a3 Mon Sep 17 00:00:00 2001 From: meancoot Date: Sun, 5 Jan 2014 14:56:45 -0500 Subject: [PATCH] (Apple) Fix building for 32-bit OSX --- apple/common/RAGameView.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apple/common/RAGameView.m b/apple/common/RAGameView.m index 409e6d2111..64ab8d0047 100644 --- a/apple/common/RAGameView.m +++ b/apple/common/RAGameView.m @@ -529,7 +529,7 @@ void apple_gfx_ctx_get_video_size(unsigned* width, unsigned* height) if (g_initialized) { -#if defined(OSX) && !defined(MAC_OS_X_VERSION_10_7) +#if defined(OSX) CGRect cgrect = NSRectToCGRect([g_view frame]); size = CGRectMake(0, 0, CGRectGetWidth(cgrect), CGRectGetHeight(cgrect)); #else