Don't build iOS mouse support on Apple TV

This commit is contained in:
Sam Lantinga
2020-04-13 15:57:04 -07:00
parent e5d3629931
commit cab1ee9cbc
2 changed files with 8 additions and 8 deletions

View File

@@ -25,7 +25,7 @@
#include "SDL_touch.h"
#ifdef __IPHONE_13_4
#if !TARGET_OS_TV && defined(__IPHONE_13_4)
@interface SDL_uikitview : UIView <UIPointerInteractionDelegate>
#else
@interface SDL_uikitview : UIView
@@ -35,7 +35,7 @@
- (void)setSDLWindow:(SDL_Window *)window;
#ifdef __IPHONE_13_4
#if !TARGET_OS_TV && defined(__IPHONE_13_4)
- (UIPointerRegion *)pointerInteraction:(UIPointerInteraction *)interaction regionForRequest:(UIPointerRegionRequest *)request defaultRegion:(UIPointerRegion *)defaultRegion API_AVAILABLE(ios(13.4));
#endif