(svn r25951) -Fix [FS#5797]: [OSX] Disable the old fullscreen sub-driver when compiling with SDK versions 10.9+.

This commit is contained in:
michi_cc
2013-11-08 20:18:31 +00:00
parent a298a62098
commit a41b8c851d
2 changed files with 9 additions and 3 deletions

View File

@@ -17,6 +17,8 @@
#include "../../stdafx.h"
#if MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_9
#define Rect OTTDRect
#define Point OTTDPoint
#import <Cocoa/Cocoa.h>
@@ -518,4 +520,5 @@ CocoaSubdriver *QZ_CreateFullscreenSubdriver(int width, int height, int bpp)
return ret;
}
#endif /* MAC_OS_X_VERSION_MIN_REQUIRED < MAC_OS_X_VERSION_10_9 */
#endif /* WITH_COCOA */