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:
parent
69d8570a9e
commit
22d41d21b8
|
@ -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)
|
||||||
|
|
Loading…
Reference in a new issue