v0.8.0: fixed an error with manifest title value

This commit is contained in:
Evan Debenham
2019-10-28 00:34:24 -04:00
parent addb991631
commit 8fe1b5979b
2 changed files with 3 additions and 3 deletions
@@ -58,7 +58,7 @@ public class DesktopLauncher {
config.title = DesktopLauncher.class.getPackage().getSpecificationTitle();
if (config.title == null) {
config.title = System.getProperty("Specification-Name");
config.title = System.getProperty("Specification-Title");
}
Game.version = DesktopLauncher.class.getPackage().getSpecificationVersion();