From eb3ff1040bbec7ae0ebc1abe25bf325d9feb83e1 Mon Sep 17 00:00:00 2001 From: yugecin Date: Sat, 1 Oct 2016 12:19:26 +0200 Subject: [PATCH] fxi F7 forreal --- src/itdelatrisu/opsu/Options.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/itdelatrisu/opsu/Options.java b/src/itdelatrisu/opsu/Options.java index f86a70e5..419f20c4 100644 --- a/src/itdelatrisu/opsu/Options.java +++ b/src/itdelatrisu/opsu/Options.java @@ -1314,7 +1314,7 @@ public class Options { * @param container the game container */ public static void setNextFPS(GameContainer container) { - GameOption.TARGET_FPS.clickListItem((GameOption.TARGET_FPS.val + 1) % targetFPS.length); + GameOption.TARGET_FPS.clickListItem((targetFPSindex + 1) % targetFPS.length); UI.sendBarNotification(String.format("Frame limiter: %s", GameOption.TARGET_FPS.getValueString())); }