every configuration setting is configurable on the ui, reset configuration button, show config descriptions

This commit is contained in:
Honfika
2013-11-08 13:17:44 +01:00
parent 6f481b2561
commit 2f49b47e87
33 changed files with 373 additions and 134 deletions

View File

@@ -119,7 +119,7 @@ public class Main {
public static void setSubLimiter(boolean value) {
if (value) {
AVM2Code.toSourceLimit = Configuration.SUBLIMITER;
AVM2Code.toSourceLimit = Configuration.sublimiter.get();
} else {
AVM2Code.toSourceLimit = -1;
}
@@ -786,7 +786,7 @@ public class Main {
*/
public static void main(String[] args) throws IOException {
startFreeMemThread();
initLogging(Configuration.debugMode);
initLogging(Configuration.debugMode.get());
initLang();