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.

This commit is contained in:
Daniel Johansson 2015-09-24 13:51:46 +01:00
parent 109c5e80cf
commit 5da9fa6bc2

View File

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