From 309a68e64d2db9bf9eef7684308888c857c3a5c6 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Wed, 1 May 2019 22:50:59 +0100 Subject: [PATCH] Tape partition number is byte sized. --- Structs/TapePartition.cs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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; }