src/video/cocoa/cocoa_v.mm
changeset 8535 cda5ffec8999
parent 8480 0ca368be883d
child 8588 9a8122b510f9
--- a/src/video/cocoa/cocoa_v.mm	Sat Dec 08 14:54:43 2007 +0000
+++ b/src/video/cocoa/cocoa_v.mm	Sat Dec 08 15:21:37 2007 +0000
@@ -233,7 +233,8 @@
 	CocoaSubdriver *ret;
 
 #if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_4
-	if (MacOSVersionIsAtLeast(10, 4, 0)) {
+	/* The reason for the version mismatch is due to the fact that the 10.4 binary needs to work on 10.5 as well. */
+	if (MacOSVersionIsAtLeast(10, 5, 0)) {
 		ret = QZ_CreateWindowQuartzSubdriver(width, height, bpp);
 		if (ret != NULL) return ret;
 	}