Changed the default app title in AppSettings to use the full name string from JmeVersion. This way no more manual changing of this will be needed for future versions. This also closes #320 which highlighted this issue. Thanks @8Keep.

experimental
Daniel Johansson 9 years ago
parent 109c5e80cf
commit 5da9fa6bc2
  1. 2
      jme3-core/src/main/java/com/jme3/system/AppSettings.java

@ -138,7 +138,7 @@ public final class AppSettings extends HashMap<String, Object> {
defaults.put("StencilBits", 0);
defaults.put("Samples", 0);
defaults.put("Fullscreen", false);
defaults.put("Title", "jMonkey Engine 3.0");
defaults.put("Title", JmeVersion.FULL_NAME);
defaults.put("Renderer", LWJGL_OPENGL2);
defaults.put("AudioRenderer", LWJGL_OPENAL);
defaults.put("DisableJoysticks", true);

Loading…
Cancel
Save