Fixed bugs in starting the game. ALso added build job for iOS ipa unsigned

This commit is contained in:
deepfriedwaffles
2026-03-25 17:54:01 -04:00
parent aeb8e45879
commit 7cc33b011d
3 changed files with 53 additions and 27 deletions

View File

@@ -1106,7 +1106,9 @@ void Minecraft::releaseMouse()
}
bool Minecraft::useTouchscreen() {
#ifdef RPI
#if TARGET_OS_IPHONE
return true;
#elif RPI
return false;
#endif
return options.getBooleanValue(OPTIONS_USE_TOUCHSCREEN) && !_supportsNonTouchscreen;