Skip to content

Commit

Permalink
"section" -> "segment"
Browse files Browse the repository at this point in the history
  • Loading branch information
niet-dev committed Mar 8, 2024
1 parent c99fad8 commit e92f4a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Etterna/Models/Misc/TimingData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1421,7 +1421,7 @@ TimingData::BuildAndGetEtaner(const std::vector<int>& nerv)
}
last_time = next_event_time;
bps = ToBPM(bpms[i])->GetBPM() / 60.f;
// set any 0 bpm sections to the previous section's bpm
// set any 0 bpm segments to the previous segment's bpm
if (bps <= 0) {
ToBPM(bpms[i])->SetBPM(ToBPM(bpms[i - 1])->GetBPM());
bps = ToBPM(bpms[i])->GetBPM() / 60.f;
Expand Down

0 comments on commit e92f4a4

Please sign in to comment.