OSDN Git Service

doc: update settings
authorhizumiaoba <56146205+hizumiaoba@users.noreply.github.com>
Fri, 23 Jul 2021 05:52:28 +0000 (14:52 +0900)
committerhizumiaoba <56146205+hizumiaoba@users.noreply.github.com>
Fri, 23 Jul 2021 05:52:28 +0000 (14:52 +0900)
settings.json
src/com/ranfa/lib/Settings.java

index ddfc9c6..12dc9f7 100644 (file)
@@ -2,8 +2,8 @@
   "checkVersion" : true,
   "checkLibraryUpdates" : true,
   "windowWidth" : 640,
-  "windowHeight" : 480,
+  "windowHeight" : 360,
   "songLimit" : 3,
   "saveScoreLog" : false,
-  "outputDebugSentences" : true
+  "outputDebugSentences" : false
 }
\ No newline at end of file
index 6a39250..28996bb 100644 (file)
@@ -73,7 +73,7 @@ public class Settings {
        }
 
        public static int getWindowHeight() {
-               int res = 480;
+               int res = 360;
                ObjectMapper mapper = new ObjectMapper();
                try {
                        JsonNode node = mapper.readTree(new File(FILEPATH));
@@ -126,7 +126,7 @@ public class Settings {
                property.setCheckVersion(true);
                property.setCheckLibraryUpdates(true);
                property.setWindowWidth(640);
-               property.setWindowHeight(480);
+               property.setWindowHeight(360);
                property.setSongLimit(3);
                property.setSaveScoreLog(false);
                property.setOutputDebugSentences(false);