diff --git a/src/itdelatrisu/opsu/GameData.java b/src/itdelatrisu/opsu/GameData.java index f4387987..5bfb4796 100644 --- a/src/itdelatrisu/opsu/GameData.java +++ b/src/itdelatrisu/opsu/GameData.java @@ -42,6 +42,9 @@ public class GameData { /** Time, in milliseconds, for a hit result to fade. */ public static final int HITRESULT_FADE_TIME = 500; + /** Time, in milliseconds, that a combo pops on the screen. */ + private static final int COMBO_POP_TIME = 250; + /** Time, in milliseconds, for a hit error tick to fade. */ private static final int HIT_ERROR_FADE_TIME = 5000; @@ -134,6 +137,9 @@ public class GameData { /** The max combo streak obtained. */ private int comboMax; + /** The current combo pop timer, in milliseconds. */ + private int comboPopTime; + /** * Hit result types accumulated this streak (bitmask), for Katu/Geki status. *