Fix TARGET_OS_IPHONE checks

This commit is contained in:
leo60228
2025-06-19 13:07:14 -04:00
committed by Ethan Lee
parent 65b024a9a3
commit 6ae4de1f94
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -383,7 +383,7 @@ bool Screen::isForcedFullscreen(void)
* If you're working on a tenfoot-only build, add a def that always
* returns true!
*/
#if defined(__ANDROID__) || defined(TARGET_OS_IPHONE)
#if defined(__ANDROID__) || TARGET_OS_IPHONE
return true;
#else
return SDL_GetHintBoolean("SteamTenfoot", SDL_FALSE);