mirror of
https://github.com/lubosz/overte.git
synced 2025-04-06 12:02:19 +02:00
Android - Remove delay starting Home + Change default joystick flag
This commit is contained in:
parent
843282739e
commit
f30908fb26
2 changed files with 3 additions and 6 deletions
|
@ -27,10 +27,7 @@ public class SplashActivity extends Activity {
|
|||
}
|
||||
|
||||
public void onAppLoadedComplete() {
|
||||
// Give interface more time so textures don't fail(got deleted) on Adreno (joystick)
|
||||
new Handler(getMainLooper()).postDelayed(() -> {
|
||||
startActivity(new Intent(this, HomeActivity.class));
|
||||
new Handler(getMainLooper()).postDelayed(() -> SplashActivity.this.finish(), 1000);
|
||||
}, 500);
|
||||
startActivity(new Intent(this, HomeActivity.class));
|
||||
SplashActivity.this.finish();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -58,7 +58,7 @@ namespace VirtualPad {
|
|||
|
||||
private:
|
||||
Instance _leftVPadInstance;
|
||||
bool _enabled;
|
||||
bool _enabled {true};
|
||||
bool _hidden;
|
||||
glm::vec2 _jumpButtonPosition;
|
||||
int _extraBottomMargin {0};
|
||||
|
|
Loading…
Reference in a new issue