Skip to content

Commit

Permalink
Fix count off-by-one
Browse files Browse the repository at this point in the history
  • Loading branch information
peppy committed Apr 3, 2024
1 parent 5e9d327 commit 44c64a9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public async Task<int> OnExecuteAsync(CancellationToken cancellationToken)

totalReordered++;

Console.WriteLine($"Reordering complete ({totalReordered} reordered, {i}/{beatmaps.Length})");
Console.WriteLine($"Reordering complete ({totalReordered} reordered, {i + 1}/{beatmaps.Length})");
}

return 0;
Expand Down

0 comments on commit 44c64a9

Please sign in to comment.