Prevent Forge process sticking around after exiting on Android devices

This commit is contained in:
drdev
2014-06-17 01:40:25 +00:00
parent 219207e4f6
commit 77083143bd
3 changed files with 16 additions and 4 deletions

View File

@@ -8,6 +8,7 @@ import forge.util.Utils;
public class Main {
public static void main(String[] args) {
new LwjglApplication(Forge.getApp(new LwjglClipboard(), "../forge-gui/"), "Forge", (int)Utils.BASE_WIDTH, (int)Utils.BASE_HEIGHT, true);
new LwjglApplication(Forge.getApp(new LwjglClipboard(), "../forge-gui/", null),
"Forge", (int)Utils.BASE_WIDTH, (int)Utils.BASE_HEIGHT, true);
}
}