diff --git a/src/itdelatrisu/opsu/states/Game.java b/src/itdelatrisu/opsu/states/Game.java index 26abb958..5ec35948 100644 --- a/src/itdelatrisu/opsu/states/Game.java +++ b/src/itdelatrisu/opsu/states/Game.java @@ -541,9 +541,9 @@ public class Game extends ComplexOpsuState { } } } else if (breakLength >= 4000) { - // show break end (flash four times for 250ms) + // show break end (flash eight times for 125ms) int endTimeDiff = endTime - trackPosition; - if (endTimeDiff < 2000 && (endTimeDiff / 250 % 2) == 1) { + if (endTimeDiff < 2000 && (endTimeDiff / 125 % 2) == 1) { Image arrow = GameImage.WARNINGARROW.getImage(); arrow.setRotation(0); arrow.draw(width * 0.15f, height * 0.15f);