SimpleApplication how to get extended class to remember my settings for Screen Size

If I run the tests it seems that Simple Display Settings remember the settings I last chose.



If I override start to use my own logo it seems to always reset the settings.

Say If the last time I set it to full screen 1024/786 the next time I restart the Application it goes back to the default

Anyone know what I should do ?

[java]

@Override

public void start() {



boolean loadSettings = false;

if (settings == null) {

setSettings(new AppSettings(true));

loadSettings = true;

}

settings.setSettingsDialogImage("/Textures/logo.png");

//settings.setSettingsDialogImage("/com/jme3/app/Monkey.png");

settings.setTitle("Script Blocks");

super.start();

}

[/java]

To me, this line:

setSettings(new AppSettings(true));



Looks like it is resetting the settings instead of loading the last values. ie: see what happens if you pass false instead.