mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Remove the ability to support little endian from BigEndianBitConverter.
This commit is contained in:
@@ -514,8 +514,7 @@ namespace DiscImageChef.Filesystems.FAT
|
||||
// Some fields could overflow fake BPB, those will be handled below
|
||||
case BpbKind.Atari:
|
||||
{
|
||||
ushort sum = 0;
|
||||
BigEndianBitConverter.IsLittleEndian = BitConverter.IsLittleEndian;
|
||||
ushort sum = 0;
|
||||
for(int i = 0; i < bpbSector.Length; i += 2) sum += BigEndianBitConverter.ToUInt16(bpbSector, i);
|
||||
|
||||
// TODO: Check this
|
||||
|
||||
Reference in New Issue
Block a user