Fixed loading screen not being hidden

This commit is contained in:
Anuken 2018-01-31 16:17:26 -05:00
parent 1515845d5d
commit b71ef67d54
2 changed files with 4 additions and 4 deletions

View File

@ -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" />

View File

@ -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(){