Android port

This commit is contained in:
leo60228
2023-09-02 16:23:17 -04:00
committed by Misa Elizabeth Kai
parent 6e18cddc69
commit 4229372c2e
38 changed files with 6327 additions and 1 deletions

View File

@@ -376,6 +376,12 @@ 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.
@@ -384,3 +390,4 @@ bool Screen::isForcedFullscreen(void)
*/
return SDL_GetHintBoolean("SteamTenfoot", SDL_FALSE);
}
#endif