mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 12:16:30 +01:00
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:
parent
8ad4f89cf8
commit
e5ea600ba0
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue