Changeset - r21101:a4544a3f30c8
[Not reviewed]
master
0 1 0
fonsinchen - 10 years ago 2013-12-30 14:46:24
fonsinchen@openttd.org
(svn r26186) -Fix: Don't check for equality of MAC_OS_X_VERSION_MAX_ALLOWED.
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/video/cocoa/event.mm
Show inline comments
 
@@ -71,7 +71,7 @@ static uint32 _tEvent;
 
/* Support for touch gestures is only available starting with the
 
 * 10.6 SDK, even if it says that support starts in fact with 10.5.2.
 
 * Replicate the needed stuff for older SDKs. */
 
#if MAC_OS_X_VERSION_MAX_ALLOWED == MAC_OS_X_VERSION_10_5
 
#if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5 && MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_6)
 
static const NSUInteger NSEventTypeMagnify    = 30;
 
static const NSUInteger NSEventTypeEndGesture = 20;
 

	
0 comments (0 inline, 0 general)