Skip to content

Commit

Permalink
Merge pull request #133 from ChristofferHolmesland/patch-1
Browse files Browse the repository at this point in the history
Revert FPS setting
  • Loading branch information
chrisj42 authored Jul 17, 2020
2 parents 9af969a + 77b7d1c commit 6eab9f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/minicraft/core/io/Settings.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public class Settings {
private static HashMap<String, ArrayEntry> options = new HashMap<>();

static {
options.put("fps", new RangeEntry("Max FPS", 10, 300, GraphicsEnvironment.getLocalGraphicsEnvironment().getDefaultScreenDevice().getDisplayMode().getRefreshRate()));
options.put("fps", new RangeEntry("Max FPS", 10, 300, 60));
options.put("diff", new ArrayEntry<>("Difficulty", "Easy", "Normal", "Hard"));
options.get("diff").setSelection(1);
options.put("mode", new ArrayEntry<>("Game Mode", "Survival", "Creative", "Hardcore", "Score"));
Expand Down

0 comments on commit 6eab9f7

Please sign in to comment.