peabrain moment

VERY IMPORTANT FIX
This commit is contained in:
minenice55 2022-06-08 23:45:08 -04:00
parent 532dfe2a08
commit 430b7ddd81

View file

@ -203,6 +203,10 @@ namespace HeavenStudio
if (result) if (result)
{ {
lastReportedBeat += 1f; lastReportedBeat += 1f;
if (lastReportedBeat < songPositionInBeats)
{
lastReportedBeat = Mathf.Round(songPositionInBeats);
}
} }
return result; return result;
} }