Skip to content

Commit

Permalink
fix UpdateCachedAllTimeSignatureUniformPositionList() when resolve co…
Browse files Browse the repository at this point in the history
…nflict timesigntures
  • Loading branch information
MikiraSora committed Oct 28, 2024
1 parent 592ba78 commit 97cc4a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OngekiFumenEditor/Base/Collections/MeterChangeList.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ private void UpdateCachedAllTimeSignatureUniformPositionList(BpmList bpmList)
removeSet.Clear();
foreach (var conflicts in conflictGroups)
{
removeSet.AddRange(conflicts.Skip(1));
removeSet.AddRange(conflicts.SkipLast(1));
/*
Log.LogDebug("detect meter positions conflict : ");
foreach (var item in conflicts)
Expand Down

0 comments on commit 97cc4a1

Please sign in to comment.