Skip to content

Commit

Permalink
doc: update settings
Browse files Browse the repository at this point in the history
  • Loading branch information
hizumiaoba committed Jul 23, 2021
1 parent 337da34 commit 3695a0e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"checkVersion" : true,
"checkLibraryUpdates" : true,
"windowWidth" : 640,
"windowHeight" : 480,
"windowHeight" : 360,
"songLimit" : 3,
"saveScoreLog" : false,
"outputDebugSentences" : true
"outputDebugSentences" : false
}
4 changes: 2 additions & 2 deletions src/com/ranfa/lib/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ public static int getWindowWidth() {
}

public static int getWindowHeight() {
int res = 480;
int res = 360;
ObjectMapper mapper = new ObjectMapper();
try {
JsonNode node = mapper.readTree(new File(FILEPATH));
Expand Down Expand Up @@ -126,7 +126,7 @@ public static boolean writeDownJSON() {
property.setCheckVersion(true);
property.setCheckLibraryUpdates(true);
property.setWindowWidth(640);
property.setWindowHeight(480);
property.setWindowHeight(360);
property.setSongLimit(3);
property.setSaveScoreLog(false);
property.setOutputDebugSentences(false);
Expand Down

0 comments on commit 3695a0e

Please sign in to comment.