mirror of
https://github.com/overte-org/overte.git
synced 2025-04-06 18:53:16 +02:00
Restore back the fix for joystick texture corruption
This commit is contained in:
parent
5e337e90a3
commit
f21ef30d85
1 changed files with 5 additions and 2 deletions
|
@ -27,7 +27,10 @@ public class SplashActivity extends Activity {
|
|||
}
|
||||
|
||||
public void onAppLoadedComplete() {
|
||||
startActivity(new Intent(this, HomeActivity.class));
|
||||
finish();
|
||||
// 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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue