v0.7.5e: final commit

This commit is contained in:
Evan Debenham
2019-10-24 13:51:55 -04:00
parent 9fbcd7a9c8
commit 774f8db938
3 changed files with 45 additions and 36 deletions
@@ -67,13 +67,13 @@ public class DesktopLauncher {
Game.version = DesktopLauncher.class.getPackage().getSpecificationVersion();
if (Game.version == null) {
Game.version = "0.7.5d-INDEV";
Game.version = "0.7.5e-INDEV";
}
try {
Game.versionCode = Integer.parseInt(DesktopLauncher.class.getPackage().getImplementationVersion());
} catch (NumberFormatException e) {
Game.versionCode = 380;
Game.versionCode = 381;
}
new LwjglApplication(new ShatteredPixelDungeon(new DesktopPlatformSupport()), config);