mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Replace old bigendian marshaller with new one.
This commit is contained in:
@@ -57,7 +57,7 @@ public sealed partial class OperaFS
|
||||
|
||||
if(errno != ErrorNumber.NoError) return errno;
|
||||
|
||||
SuperBlock sb = Marshal.ByteArrayToStructureBigEndianGenerated<SuperBlock>(sbSector);
|
||||
SuperBlock sb = Marshal.ByteArrayToStructureBigEndian<SuperBlock>(sbSector);
|
||||
|
||||
if(sb.record_type != 1 || sb.record_version != 1) return ErrorNumber.InvalidArgument;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user