Skip to content

Commit

Permalink
i think this does it (#3955)
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnikTil authored Jan 17, 2025
1 parent 69d8570 commit 22d41d2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions source/funkin/play/PlayState.hx
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ class PlayState extends MusicBeatSubState
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;
Expand Down Expand Up @@ -1447,7 +1447,9 @@ class PlayState extends MusicBeatSubState
}

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");
if (vocals != null)
Expand Down

0 comments on commit 22d41d2

Please sign in to comment.