From 33d1eafb4269833c358ac093f4e73c5c5c5c299a Mon Sep 17 00:00:00 2001 From: Kade M Date: Wed, 11 Aug 2021 17:09:49 -0700 Subject: [PATCH] oh right its actually this --- source/ChartingState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ChartingState.hx b/source/ChartingState.hx index 9ff8396..2dc21ef 100644 --- a/source/ChartingState.hx +++ b/source/ChartingState.hx @@ -1314,7 +1314,7 @@ class ChartingState extends MusicBeatState if (data == null) return; - FlxG.sound.music.time = (data.startBeat + (beat - data.startBeat) / (data.bpm / 60)) * 1000; + FlxG.sound.music.time = (data.startTime + ((beat - data.startBeat) / (data.bpm / 60))) * 1000; if (!PlayState.isSM) vocals.time = FlxG.sound.music.time; curSection = section;