Remove "" around CATALOG number in .cue file

cue2ddp definitely wants the bar code number *not* enclosed in quotes in
.cue files. Leave the quotes in .toc files: cdrdao definitely does need
these.
This commit is contained in:
Colin Fletcher 2015-06-19 16:12:07 +01:00
parent 8ad4f89cf8
commit e5ea600ba0

View File

@ -542,7 +542,7 @@ ExportHandler::write_cue_header (CDMarkerStatus & status)
status.out << "REM Cue file generated by " << PROGRAM_NAME << endl;
if (barcode != "")
status.out << "CATALOG \"" << barcode << "\"" << endl;
status.out << "CATALOG " << barcode << endl;
if (album_artist != "")
status.out << "PERFORMER " << cue_escape_cdtext (album_artist) << endl;