From 4de1726bf6b157d97974b9f933305feb13b1e694 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Sun, 17 Jan 2016 19:58:31 +0100 Subject: [PATCH] Define CGFloat for versions lower or equal to OSX 10.4 --- libretro-common/include/compat/apple_compat.h | 1 + 1 file changed, 1 insertion(+) diff --git a/libretro-common/include/compat/apple_compat.h b/libretro-common/include/compat/apple_compat.h index 7ca1e15923..7e13d90baf 100644 --- a/libretro-common/include/compat/apple_compat.h +++ b/libretro-common/include/compat/apple_compat.h @@ -29,6 +29,7 @@ #if (MAC_OS_X_VERSION_MAX_ALLOWED <= MAC_OS_X_VERSION_10_4) typedef int NSInteger; typedef unsigned NSUInteger; +typedef float CGFloat; #endif #endif