Skip to content

Commit

Permalink
reduce ram, set ip
Browse files Browse the repository at this point in the history
  • Loading branch information
dtinth committed Nov 12, 2012
1 parent a3ad3cf commit 2bb053d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
8 changes: 6 additions & 2 deletions nbproject/project.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
annotation.processing.enabled=true
annotation.processing.enabled.in.editor=false
annotation.processing.processors.list=
annotation.processing.run.all.processors=true
annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
application.title=open2jam
Expand Down Expand Up @@ -82,9 +83,12 @@ javadoc.windowtitle=
jnlp.codebase.type=no.codebase
jnlp.descriptor=application
jnlp.enabled=false
jnlp.mixed.code=defaut
jnlp.mixed.code=default
jnlp.offline-allowed=false
jnlp.signed=false
jnlp.signing=
jnlp.signing.alias=
jnlp.signing.keystore=
main.class=org.open2jam.Main
manifest.file=manifest.mf
meta.inf.dir=${src.dir}/META-INF
Expand All @@ -95,7 +99,7 @@ reference.open2jam-parsers.jar=${project.open2jam-parsers}/dist/open2jam-parsers
run.classpath=\
${javac.classpath}:\
${build.classes.dir}
run.jvmargs=-Xms128M -Xmx3G
run.jvmargs=-Xms128M -Xmx512m
run.test.classpath=\
${javac.test.classpath}:\
${build.test.classes.dir}
Expand Down
2 changes: 1 addition & 1 deletion src/org/open2jam/render/Render.java
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ public Render(Chart chart, GameOptions opt, DisplayMode dm) throws SoundSystemEx
displayLatency = new Latency(opt.getDisplayLag());
audioLatency = new Latency(opt.getAudioLatency());

localMatching = new Client("localhost", 7273);
localMatching = new Client("192.168.43.166", 7273);

window.setDisplay(dm,opt.getVsync(),opt.getFullScreen(),opt.getBilinear());
}
Expand Down

0 comments on commit 2bb053d

Please sign in to comment.