mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Remove FAT mounting limit of a minimum 512 bps.
This commit is contained in:
@@ -90,8 +90,6 @@ namespace DiscImageChef.Filesystems.FAT
|
||||
default: return Errno.InvalidArgument;
|
||||
}
|
||||
|
||||
if(imagePlugin.Info.SectorSize < 512) return Errno.InvalidArgument;
|
||||
|
||||
DicConsole.DebugWriteLine("FAT plugin", "Reading BPB");
|
||||
|
||||
uint sectorsPerBpb = imagePlugin.Info.SectorSize < 512 ? 512 / imagePlugin.Info.SectorSize : 1;
|
||||
|
||||
Reference in New Issue
Block a user