Skip to content

Commit

Permalink
Remove settings flag
Browse files Browse the repository at this point in the history
  • Loading branch information
Feodor0090 committed Jun 18, 2023
1 parent 7a1e7b8 commit be1ccd8
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/nmania/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,6 @@ else if (dir.charAt(dir.length() - 1) != '/')
* Are exit/fail/pass/restart samples enabled?
*/
public static boolean gameplaySamples = false;
/**
* Are hit samples enabled?
*/
public static boolean hitSamples = false;
/**
* If hit samples are enabled, do we want to load them from beatmap?
*/
Expand Down Expand Up @@ -148,7 +144,6 @@ public static final String Serialize() {
}
j.accumulate("keys", keys);
j.accumulate("samples", new Boolean(gameplaySamples));
j.accumulate("hitsounds", new Boolean(hitSamples));
j.accumulate("keepmenu", new Boolean(keepMenu));
j.accumulate("drawcounters", new Boolean(drawHUD));
j.accumulate("fullscreenflush", new Boolean(fullScreenFlush));
Expand Down Expand Up @@ -215,7 +210,6 @@ public static final void Load() {
}
}
gameplaySamples = j.optBoolean("samples", true); // ?full
hitSamples = j.optBoolean("hitsounds", false); // ?full
keepMenu = j.optBoolean("keepmenu", true); // ?full
drawHUD = j.optBoolean("drawcounters", true);
final String device = Nmania.GetDevice();
Expand Down

0 comments on commit be1ccd8

Please sign in to comment.