mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
🐛Fix DART endianness.
This commit is contained in:
@@ -238,6 +238,8 @@ namespace DiscImageChef.DiscImages
|
|||||||
bLength = new short[BLOCK_ARRAY_LEN_HIGH];
|
bLength = new short[BLOCK_ARRAY_LEN_HIGH];
|
||||||
else bLength = new short[BLOCK_ARRAY_LEN_LOW];
|
else bLength = new short[BLOCK_ARRAY_LEN_LOW];
|
||||||
|
|
||||||
|
BigEndianBitConverter.IsLittleEndian = BitConverter.IsLittleEndian;
|
||||||
|
|
||||||
for(int i = 0; i < bLength.Length; i++)
|
for(int i = 0; i < bLength.Length; i++)
|
||||||
{
|
{
|
||||||
byte[] tmpShort = new byte[2];
|
byte[] tmpShort = new byte[2];
|
||||||
|
|||||||
Reference in New Issue
Block a user