mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
* DiscImageChef.DiscImages/DiskCopy42.cs:
Swap tracks in second half of twiggy images. * DiscImageChef.Filesystems/UCSDPascal/File.cs: * DiscImageChef.Filesystems/UCSDPascal/Super.cs: Corrected file size calculation.
This commit is contained in:
@@ -126,9 +126,9 @@ namespace DiscImageChef.Filesystems.UCSDPascal
|
||||
stat.PluginId = PluginUUID;
|
||||
stat.Type = "UCSD Pascal";
|
||||
|
||||
stat.FreeBlocks = mountedVolEntry.blocks - (mountedVolEntry.lastBlock - mountedVolEntry.firstBlock + 1);
|
||||
stat.FreeBlocks = mountedVolEntry.blocks - (mountedVolEntry.lastBlock - mountedVolEntry.firstBlock);
|
||||
foreach(PascalFileEntry entry in fileEntries)
|
||||
stat.FreeBlocks -= (entry.lastBlock - entry.firstBlock + 1);
|
||||
stat.FreeBlocks -= (entry.lastBlock - entry.firstBlock);
|
||||
|
||||
return Errno.NotImplemented;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user