mirror of https://github.com/encounter/SDL.git
Fixed bug 4745 - 2.0.10 fails to build against macOS 10.11 SDK
Joshua Root NSEventSubtypeMouseEvent was added in 10.12, so it needs to be defined on 10.11 as well
This commit is contained in:
parent
18bcafffce
commit
31cb854f98
|
@ -113,9 +113,8 @@ typedef struct SDL_VideoData
|
||||||
/* Utility functions */
|
/* Utility functions */
|
||||||
extern NSImage * Cocoa_CreateImage(SDL_Surface * surface);
|
extern NSImage * Cocoa_CreateImage(SDL_Surface * surface);
|
||||||
|
|
||||||
/* Fix build with the 10.10 SDK */
|
/* Fix build with the 10.11 SDK */
|
||||||
#if MAC_OS_X_VERSION_MAX_ALLOWED < 101100
|
#if MAC_OS_X_VERSION_MAX_ALLOWED < 101200
|
||||||
#define NSEventSubtypeTouch NSTouchEventSubtype
|
|
||||||
#define NSEventSubtypeMouseEvent NSMouseEventSubtype
|
#define NSEventSubtypeMouseEvent NSMouseEventSubtype
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue