circular array is fixed and tested

This commit is contained in:
minjaesong
2019-01-09 05:43:56 +09:00
parent adf45b1f68
commit 808797760d
7 changed files with 102 additions and 27 deletions

View File

@@ -53,7 +53,7 @@ public class AppLoader implements ApplicationListener {
/**
* when FALSE, some assertion and print code will not execute
*/
public static final boolean IS_DEVELOPMENT_BUILD = true;
public static boolean IS_DEVELOPMENT_BUILD = false;
/**
@@ -169,6 +169,10 @@ public class AppLoader implements ApplicationListener {
appConfig.title = GAME_NAME;
appConfig.forceExit = false;
if (args.length == 1 && args[0].equals("isdev=true")) {
IS_DEVELOPMENT_BUILD = true;
}
new LwjglApplication(new AppLoader(appConfig), appConfig);
}