1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2025-06-07 16:22:13 +00:00

i think this does it (#3955)

This commit is contained in:
Til 2025-01-17 13:33:16 -07:00 committed by GitHub
parent 69d8570a9e
commit 22d41d21b8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -906,7 +906,7 @@ class PlayState extends MusicBeatSubState
Conductor.instance.formatOffset = 0.0; Conductor.instance.formatOffset = 0.0;
} }
Conductor.instance.update(); // Normal conductor update. Conductor.instance.update(Conductor.instance.songPosition + elapsed * 1000, false); // Normal conductor update.
} }
var androidPause:Bool = false; var androidPause:Bool = false;
@ -1447,7 +1447,9 @@ class PlayState extends MusicBeatSubState
} }
if (!startingSong if (!startingSong
&& (Math.abs(FlxG.sound.music.time - correctSync) > 5 || Math.abs(playerVoicesError) > 5 || Math.abs(opponentVoicesError) > 5)) && (Math.abs(FlxG.sound.music.time - correctSync) > 100
|| Math.abs(playerVoicesError) > 100
|| Math.abs(opponentVoicesError) > 100))
{ {
trace("VOCALS NEED RESYNC"); trace("VOCALS NEED RESYNC");
if (vocals != null) if (vocals != null)