Solve CDRDAO, CDRWin and CloneCD when disc catalog number uses whole ASCII and not only numeric digits.

This commit is contained in:
2018-06-23 18:18:58 +01:00
parent a07e6f493a
commit c7bb65090f
3 changed files with 3 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ namespace DiscImageChef.DiscImages
const string DISC_SESSIONS = @"^\s*Sessions\s*=\s*(?<value>\d+)";
const string DISC_SCRAMBLED = @"^\s*DataTracksScrambled\s*=\s*(?<value>\d+)";
const string CDTEXT_LENGTH = @"^\s*CDTextLength\s*=\s*(?<value>\d+)";
const string DISC_CATALOG = @"^\s*CATALOG\s*=\s*(?<value>\w+)";
const string DISC_CATALOG = @"^\s*CATALOG\s*=\s*(?<value>[\x21-\x7F]{13})";
const string SESSION_PREGAP = @"^\s*PreGapMode\s*=\s*(?<value>\d+)";
const string SESSION_SUBCHANNEL = @"^\s*PreGapSubC\s*=\s*(?<value>\d+)";
const string ENTRY_SESSION = @"^\s*Session\s*=\s*(?<value>\d+)";