From e02d9a546f1a3a13189de123e95d3c965810e87d Mon Sep 17 00:00:00 2001 From: Kade M Date: Mon, 24 May 2021 20:45:15 -0700 Subject: [PATCH] lock at 1 snap for now --- source/ChartingState.hx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/ChartingState.hx b/source/ChartingState.hx index 64b33bc..1b090d8 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -651,14 +651,14 @@ class ChartingState extends MusicBeatState writingNotes = !writingNotes; } - if (FlxG.keys.pressed.CONTROL && FlxG.keys.justPressed.RIGHT) + /*if (FlxG.keys.pressed.CONTROL && FlxG.keys.justPressed.RIGHT) snap = snap * 2; if (FlxG.keys.pressed.CONTROL && FlxG.keys.justPressed.LEFT) snap = Math.round(snap / 2); if (snap >= 192) snap = 192; if (snap <= 1) - snap = 1; + snap = 1;*/ Conductor.songPosition = FlxG.sound.music.time; _song.song = typingShit.text; @@ -921,7 +921,7 @@ class ChartingState extends MusicBeatState FlxG.sound.music.pause(); vocals.pause(); - FlxG.sound.music.time += (FlxG.mouse.wheel * Conductor.stepCrochet / snap); + FlxG.sound.music.time = curStep * Conductor.stepCrochet - (FlxG.mouse.wheel * Conductor.stepCrochet / snap); vocals.time = FlxG.sound.music.time; }