mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix inconsistent naming.
This commit is contained in:
@@ -620,7 +620,7 @@ namespace Aaru.DiscImages
|
||||
FeatureUnsupportedImageException($"Found FLAGS field in incorrect place at line {lineNumber}");
|
||||
|
||||
currentTrack.FlagDcp |= matchFlags.Groups["dcp"].Value == "DCP";
|
||||
currentTrack.Flag4ch |= matchFlags.Groups["quad"].Value == "4CH";
|
||||
currentTrack.Flag4Ch |= matchFlags.Groups["quad"].Value == "4CH";
|
||||
currentTrack.FlagPre |= matchFlags.Groups["pre"].Value == "PRE";
|
||||
currentTrack.FlagScms |= matchFlags.Groups["scms"].Value == "SCMS";
|
||||
}
|
||||
@@ -1174,7 +1174,7 @@ namespace Aaru.DiscImages
|
||||
AaruConsole.DebugWriteLine("CDRWin plugin", "\t\tPostgap: {0} sectors",
|
||||
_discImage.Tracks[i].Postgap);
|
||||
|
||||
if(_discImage.Tracks[i].Flag4ch)
|
||||
if(_discImage.Tracks[i].Flag4Ch)
|
||||
AaruConsole.DebugWriteLine("CDRWin plugin", "\t\tTrack is flagged as quadraphonic");
|
||||
|
||||
if(_discImage.Tracks[i].FlagDcp)
|
||||
@@ -1831,7 +1831,7 @@ namespace Aaru.DiscImages
|
||||
if(aaruTrack.FlagPre)
|
||||
flags |= CdFlags.PreEmphasis;
|
||||
|
||||
if(aaruTrack.Flag4ch)
|
||||
if(aaruTrack.Flag4Ch)
|
||||
flags |= CdFlags.FourChannel;
|
||||
|
||||
return new[]
|
||||
|
||||
@@ -62,7 +62,7 @@ namespace Aaru.DiscImages
|
||||
/// <summary>Track composer (from CD-Text)</summary>
|
||||
public string Composer;
|
||||
/// <summary>Track is quadraphonic</summary>
|
||||
public bool Flag4ch;
|
||||
public bool Flag4Ch;
|
||||
/// <summary>Digital Copy Permitted</summary>
|
||||
public bool FlagDcp;
|
||||
/// <summary>Track has pre-emphasis</summary>
|
||||
|
||||
Reference in New Issue
Block a user