mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix error by one in overflow sectors conversion.
This commit is contained in:
@@ -331,7 +331,7 @@ public partial class Convert
|
|||||||
|
|
||||||
InitProgress?.Invoke();
|
InitProgress?.Invoke();
|
||||||
|
|
||||||
for(uint i = 1; i <= _overflowSectors; i++)
|
for(uint i = 1; i < _overflowSectors; i++)
|
||||||
{
|
{
|
||||||
if(_aborted) break;
|
if(_aborted) break;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user