diff --git a/Assets/Scripts/Conductor.cs b/Assets/Scripts/Conductor.cs index 1acfb49b0..7f60d3cf1 100644 --- a/Assets/Scripts/Conductor.cs +++ b/Assets/Scripts/Conductor.cs @@ -203,6 +203,10 @@ namespace HeavenStudio if (result) { lastReportedBeat += 1f; + if (lastReportedBeat < songPositionInBeats) + { + lastReportedBeat = Mathf.Round(songPositionInBeats); + } } return result; }