mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Solve CDRDAO, CDRWin and CloneCD when disc catalog number uses whole ASCII and not only numeric digits.
This commit is contained in:
@@ -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+)";
|
||||
|
||||
Reference in New Issue
Block a user