From b18e01c1e4d5f1c8e33fcbbf1e15e14da2e102f2 Mon Sep 17 00:00:00 2001 From: Sotumney Date: Mon, 15 Jun 2026 22:32:41 +0200 Subject: [PATCH] Adhere to higher refresh rate displays Removed the arbitrary limit of 60 fps and set it to 240 fps in order to adhere to players on high refresh rate displays and could not stand the 60 fps cap. --- .../java/dev/tr7zw/exordium/config/ExordiumConfigScreen.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/dev/tr7zw/exordium/config/ExordiumConfigScreen.java b/src/main/java/dev/tr7zw/exordium/config/ExordiumConfigScreen.java index 689250f..a8f2312 100644 --- a/src/main/java/dev/tr7zw/exordium/config/ExordiumConfigScreen.java +++ b/src/main/java/dev/tr7zw/exordium/config/ExordiumConfigScreen.java @@ -64,7 +64,7 @@ public ExordiumConfigScreen(Screen lastScreen) { private void addSettings(List options, Config.ComponentSettings settings, String name) { options.add(getOnOffOption("text.exordium.setting." + name + ".enabled", () -> settings.isEnabled(), (b) -> settings.setEnabled(b))); - options.add(getIntOption("text.exordium.setting." + name + ".fps", 5, 60, () -> settings.getMaxFps(), + options.add(getIntOption("text.exordium.setting." + name + ".fps", 5, 240, () -> settings.getMaxFps(), (v) -> settings.setMaxFps(v))); }