Refactor and code cleanup.

This commit is contained in:
2016-07-28 22:25:26 +01:00
parent c93d469da9
commit a63ba13b6b
199 changed files with 3614 additions and 3744 deletions

View File

@@ -60,7 +60,7 @@ namespace DiscImageChef.Decoders.CD
/// <summary>
/// Total size of returned TOC minus this field
/// </summary>
public UInt16 DataLength;
public ushort DataLength;
/// <summary>
/// First track number in hex
/// </summary>
@@ -106,7 +106,7 @@ namespace DiscImageChef.Decoders.CD
/// Bytes 4 to 7
/// The track start address in LBA or in MSF
/// </summary>
public UInt32 TrackStartAddress;
public uint TrackStartAddress;
}
public static CDTOC? Decode(byte[] CDTOCResponse)