Restore back the fix for joystick texture corruption

This commit is contained in:
Gabriel Calero 2018-05-08 17:24:49 -03:00
parent 5e337e90a3
commit f21ef30d85

View file

@ -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);
}
}