summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorNao Pross <naopross@thearcway.org>2018-11-21 13:22:57 +0100
committerNao Pross <naopross@thearcway.org>2018-11-21 13:22:57 +0100
commitbac7678e923e197a64e534cd4f93fae7822806ed (patch)
tree42fdc9e81c6d783f95cf4604c822237d01430e22 /Makefile
parentFix InvalidStateException at scene loading, add Scene.requestScene() (diff)
downloadSubconscious-java-bac7678e923e197a64e534cd4f93fae7822806ed.tar.gz
Subconscious-java-bac7678e923e197a64e534cd4f93fae7822806ed.zip
Disable Pause feature, add scene UNIQUE_NAME generator
There is a bug with the management of the scenes that has to be solved before implementing the pause (and consequently PauseScene)
Diffstat (limited to '')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ed8af89..8db1cc8 100644
--- a/Makefile
+++ b/Makefile
@@ -15,7 +15,8 @@ USE_JDB := 0
# java runtime configuration
JAVA := java
-JAVA_ARGS := -Dawt.useSystemAAFontSettings=on -cp ../lib/gson-2.6.2.jar:.
+JAVA_ARGS := -Dawt.useSystemAAFontSettings=on -cp ../lib/gson-2.6.2.jar:. \
+ -Xmx2G
ifeq ($(USE_JDB),1)
JAVA_ARGS += -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000
endif