diff --git a/Assets/Scripts/OCES/Audio/HandWritten/LongAudio/BeatClock.cs b/Assets/Scripts/OCES/Audio/HandWritten/LongAudio/BeatClock.cs index 56638cf..9994cb7 100644 --- a/Assets/Scripts/OCES/Audio/HandWritten/LongAudio/BeatClock.cs +++ b/Assets/Scripts/OCES/Audio/HandWritten/LongAudio/BeatClock.cs @@ -61,7 +61,7 @@ namespace OCES.Audio double delay = this.m_startDspTime - AudioSettings.dspTime; if (delay > 0) { - this.m_delayCoroutine = this.m_host.StartCoroutine(DelayedStart(delay, hasTimeSig, hasGrid)); + this.m_delayCoroutine = this.m_host.StartCoroutine(DelayedStart(hasTimeSig, hasGrid)); } else { @@ -69,7 +69,7 @@ namespace OCES.Audio } } - IEnumerator DelayedStart(double delay, bool hasTimeSig, bool hasGrid) + IEnumerator DelayedStart(bool hasTimeSig, bool hasGrid) { yield return new WaitUntil(() => AudioSettings.dspTime >= this.m_startDspTime - 0.02);