From af823cc1d95704cf6b3f9f39a62c460041ef0886 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Mon, 10 Sep 2018 23:00:09 -0700 Subject: [PATCH] Fixed building on tvOS --- src/video/uikit/SDL_uikitmodes.m | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/video/uikit/SDL_uikitmodes.m b/src/video/uikit/SDL_uikitmodes.m index e9224e1c15ee0..acf739b61bec8 100644 --- a/src/video/uikit/SDL_uikitmodes.m +++ b/src/video/uikit/SDL_uikitmodes.m @@ -324,6 +324,7 @@ @implementation SDL_DisplayModeData } } +#if !TARGET_OS_TV void SDL_OnApplicationDidChangeStatusBarOrientation() { BOOL isLandscape = UIInterfaceOrientationIsLandscape([UIApplication sharedApplication].statusBarOrientation); @@ -372,6 +373,7 @@ void SDL_OnApplicationDidChangeStatusBarOrientation() SDL_SendDisplayEvent(display, SDL_DISPLAYEVENT_ORIENTATION, orientation); } } +#endif /* !TARGET_OS_TV */ #endif /* SDL_VIDEO_DRIVER_UIKIT */