mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-02-03 04:44:24 +07:00
Fixed loading screen not being hidden
This commit is contained in:
parent
1515845d5d
commit
b71ef67d54
@ -1,8 +1,8 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="io.anuke.mindustry"
|
||||
android:versionCode="64"
|
||||
android:versionName="3.3b15" >
|
||||
android:versionCode="65"
|
||||
android:versionName="3.3b15.1" >
|
||||
|
||||
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
|
||||
<uses-permission android:name="com.android.vending.BILLING" />
|
||||
|
@ -212,13 +212,13 @@ public class Control extends Module{
|
||||
ui.loadfrag.show();
|
||||
saves.resetSave();
|
||||
|
||||
Timers.run(16, ()->{
|
||||
Timers.runTask(10, ()->{
|
||||
logic.reset();
|
||||
world.loadMap(map);
|
||||
logic.play();
|
||||
});
|
||||
|
||||
Timers.run(18, ()-> ui.loadfrag.hide());
|
||||
Timers.runTask(18, ()-> ui.loadfrag.hide());
|
||||
}
|
||||
|
||||
public boolean isHighScore(){
|
||||
|
Loading…
Reference in New Issue
Block a user