diff --git a/src/Etterna/Actor/Gameplay/NoteField.cpp b/src/Etterna/Actor/Gameplay/NoteField.cpp index 97a9da9ef1..3c82748f63 100644 --- a/src/Etterna/Actor/Gameplay/NoteField.cpp +++ b/src/Etterna/Actor/Gameplay/NoteField.cpp @@ -834,6 +834,8 @@ NoteField::DrawPrimitives() const auto realStart = visibleSecondStart - distanceThroughInterval; for (auto timePos = realStart; timePos <= visibleSecondEnd; timePos += intervalSize) { + if (timePos < visibleSecondStart) + continue; const auto fBeat = pTiming->GetBeatFromElapsedTime(timePos); DrawCalcIntervalBar(fBeat); }