diff --git a/source/Note.hx b/source/Note.hx index 8685ee2..002d9eb 100644 --- a/source/Note.hx +++ b/source/Note.hx @@ -174,7 +174,10 @@ class Note extends FlxSprite } - prevNote.scale.y *= Conductor.stepCrochet / 100 * 1.8 * FlxG.save.data.scrollSpeed; + if(FlxG.save.data.scrollSpeed != 1) + prevNote.scale.y *= Conductor.stepCrochet / 100 * 1.5 * FlxG.save.data.scrollSpeed; + else + prevNote.scale.y *= Conductor.stepCrochet / 100 * 1.5 * PlayState.SONG.speed; prevNote.updateHitbox(); // prevNote.setGraphicSize(); } diff --git a/source/PlayState.hx b/source/PlayState.hx index cacd2d3..450ce7e 100644 --- a/source/PlayState.hx +++ b/source/PlayState.hx @@ -2619,7 +2619,7 @@ class PlayState extends MusicBeatState dad.playAnim('singDOWN' + altAnim, true); case 0: dad.playAnim('singLEFT' + altAnim, true); - } + } #if windows if (lua != null)