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

This commit is contained in:
2026-03-25 17:54:01 -04:00
parent 2b4ff27043
commit 8ea20b1da9
3 changed files with 53 additions and 27 deletions

View File

@@ -1105,7 +1105,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;