summaryrefslogtreecommitdiff
path: root/include/SDL_platform.h
diff options
context:
space:
mode:
authorAlex Szpakowski <slime73@gmail.com>2016-05-21 00:20:52 -0300
committerAlex Szpakowski <slime73@gmail.com>2016-05-21 00:20:52 -0300
commitc84f285520be78ea88c9d67b66923d48f5113e68 (patch)
tree86f6aa20e96c47d4324013a3bc482b6f4b823005 /include/SDL_platform.h
parentc54fdb56ef8e962f9b4403efa60f501f4c78b502 (diff)
downloadsdl-c84f285520be78ea88c9d67b66923d48f5113e68.tar.gz
Removed Mac OS 10.5 support (bug #3137). Also fixed a warning about deprecated Carbon code when using SDL_audio (bug #3127, thanks Dominik!)
Diffstat (limited to 'include/SDL_platform.h')
-rw-r--r--include/SDL_platform.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/SDL_platform.h b/include/SDL_platform.h
index c6c21398b..974cafc07 100644
--- a/include/SDL_platform.h
+++ b/include/SDL_platform.h
@@ -79,9 +79,9 @@
/* if not compiling for iPhone */
#undef __MACOSX__
#define __MACOSX__ 1
-#if MAC_OS_X_VERSION_MIN_REQUIRED < 1050
-# error SDL for Mac OS X only supports deploying on 10.5 and above.
-#endif /* MAC_OS_X_VERSION_MIN_REQUIRED < 1050 */
+#if MAC_OS_X_VERSION_MIN_REQUIRED < 1060
+# error SDL for Mac OS X only supports deploying on 10.6 and above.
+#endif /* MAC_OS_X_VERSION_MIN_REQUIRED < 1060 */
#endif /* TARGET_OS_IPHONE */
#endif /* defined(__APPLE__) */