🐛Correct track flags on CD images.

This commit is contained in:
2018-01-01 21:32:12 +00:00
parent 4756fd8e7c
commit aa493b53e5
6 changed files with 1171 additions and 1117 deletions

View File

@@ -281,12 +281,12 @@ namespace DiscImageChef.DiscImages
public enum CdFlags : byte
{
/// <summary>Track is quadraphonic.</summary>
FourChannel = 0x20,
FourChannel = 0x08,
/// <summary>Track is non-audio (data).</summary>
DataTrack = 0x10,
DataTrack = 0x04,
/// <summary>Track is copy protected.</summary>
CopyPrevent = 0x08,
CopyPermitted = 0x02,
/// <summary>Track has pre-emphasis.</summary>
PreEmphasis = 0x04
PreEmphasis = 0x01
}
}