We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de02137 commit 8fef945Copy full SHA for 8fef945
source/funkin/play/PlayState.hx
@@ -915,8 +915,9 @@ class PlayState extends MusicBeatSubState
915
{
916
Conductor.instance.formatOffset = 0.0;
917
}
918
-
919
- Conductor.instance.update(Conductor.instance.songPosition + elapsed * 1000, false); // Normal conductor update.
+ // Pass the music time instead if the pitch is different, aka, the song is lower or faster
+ Conductor.instance.update((FlxG.sound.music.pitch != 1) ? FlxG.sound.music.time + elapsed * 1000 : (Conductor.instance.songPosition + elapsed * 1000),
920
+ false); // Normal conductor update.
921
922
923
var androidPause:Bool = false;
0 commit comments