v2.2.0: updated version definitions in ShatteredPixelDungeon.java

This commit is contained in:
Evan Debenham
2023-07-12 12:23:44 -04:00
parent 13ba94252a
commit d39ecceaef
2 changed files with 2 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ public class ShatteredPixelDungeon extends Game {
public static final int v1_4_3 = 668;
public static final int v2_0_2 = 700;
public static final int v2_1_0 = 722;
public static final int v2_1_4 = 737; //iOS was 737, other platforms were 736
public ShatteredPixelDungeon( PlatformSupport platform ) {
super( sceneClass == null ? WelcomeScene.class : sceneClass, platform );

View File

@@ -53,7 +53,7 @@ import java.util.Collections;
public class WelcomeScene extends PixelScene {
private static final int LATEST_UPDATE = ShatteredPixelDungeon.v2_1_0;
private static final int LATEST_UPDATE = ShatteredPixelDungeon.v2_1_4;
//used so that the game does not keep showing the window forever if cleaning fails
private static boolean triedCleaningTemp = false;