Address review

This commit is contained in:
leo60228
2023-09-05 13:13:27 -04:00
committed by Misa Elizabeth Kai
parent f3f9d1b523
commit 3e0cf57a99
2 changed files with 18 additions and 17 deletions

View File

@@ -376,18 +376,15 @@ void Screen::recacheTextures(void)
}
}
#ifdef __ANDROID__
bool Screen::isForcedFullscreen(void)
{
return true;
}
#else
bool Screen::isForcedFullscreen(void)
{
/* This is just a check to see if we're on a desktop or tenfoot setup.
* If you're working on a tenfoot-only build, add a def that always
* returns true!
*/
#ifdef __ANDROID__
return true;
#else
return SDL_GetHintBoolean("SteamTenfoot", SDL_FALSE);
}
#endif
}