Fix spacing

This commit is contained in:
Deterous
2024-03-05 12:11:34 +09:00
parent 55cab8202d
commit a93c727ba2
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -1191,7 +1191,7 @@ namespace LibIRD
{
// Skip hashing file extent if it has not yet started or already ended
if (FileExtents[i][j].Offset > currentSector + bufSectors
|| SectorSize* FileExtents[i][j].Offset + FileExtents[i][j].Count < SectorSize * currentSector)
|| SectorSize * FileExtents[i][j].Offset + FileExtents[i][j].Count < SectorSize * currentSector)
continue;
// Determine first file byte location in buffer
int startByte = FileExtents[i][j].Offset > currentSector ? (int)(SectorSize * (FileExtents[i][j].Offset - currentSector)) : 0;