Fix error by one in overflow sectors conversion.

This commit is contained in:
2025-12-12 19:31:18 +00:00
parent 4334dfe706
commit ab6451a73f

View File

@@ -331,7 +331,7 @@ public partial class Convert
InitProgress?.Invoke();
for(uint i = 1; i <= _overflowSectors; i++)
for(uint i = 1; i < _overflowSectors; i++)
{
if(_aborted) break;