diff --git a/Structs/TapePartition.cs b/Structs/TapePartition.cs index 658b7f7..a0de793 100644 --- a/Structs/TapePartition.cs +++ b/Structs/TapePartition.cs @@ -35,20 +35,21 @@ // ---------------------------------------------------------------------------- // Copyright © 2011-2019 Natalia Portillo // ****************************************************************************/ + namespace DiscImageChef.CommonTypes.Structs { public struct TapePartition { /// - /// Partition number + /// Partition number /// - public uint Number; + public byte Number; /// - /// First block, inclusive, of the partition + /// First block, inclusive, of the partition /// public ulong FirstBlock; /// - /// Last block, inclusive, of the partition + /// Last block, inclusive, of the partition /// public ulong LastBlock; }