diff --git a/src/itdelatrisu/opsu/objects/Spinner.java b/src/itdelatrisu/opsu/objects/Spinner.java index 7b8a5ccd..6fb3a2a7 100644 --- a/src/itdelatrisu/opsu/objects/Spinner.java +++ b/src/itdelatrisu/opsu/objects/Spinner.java @@ -232,12 +232,14 @@ public class Spinner extends GameObject { GameImage.SPINNER_SPIN.getImage().setAlpha(alpha); GameImage.SPINNER_SPIN.getImage().drawCentered(width2, height * 3 / 4); + /* if (spinnerComplete) { GameImage.SPINNER_CLEAR.getImage().drawCentered(width2, height / 4); int extraRotations = (int) (rotations - rotationsNeeded); if (extraRotations > 0) data.drawSymbolNumber(extraRotations * 1000, width2, height * 2 / 3, 1f, 1f); } + */ } /** diff --git a/src/yugecin/opsudance/ReplayCursor.java b/src/yugecin/opsudance/ReplayCursor.java index c7623663..98e1dba0 100644 --- a/src/yugecin/opsudance/ReplayCursor.java +++ b/src/yugecin/opsudance/ReplayCursor.java @@ -77,7 +77,7 @@ public class ReplayCursor int removecount = 0; TrailNode newfirst = trail.first; - while (newfirst != null && newfirst.value.time < nowtime - 400) { + while (newfirst != null && newfirst.value.time < nowtime - 175) { newfirst = newfirst.next; removecount++; }