summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Fletcher <colin.m.fletcher@googlemail.com>2015-06-19 16:12:07 +0100
committerColin Fletcher <colin.m.fletcher@googlemail.com>2015-06-21 14:48:33 +0100
commite5ea600ba020236fcc2ed1c88b987ebb9b2b7aa5 (patch)
tree8aef5988657f47966e695652ebef1f4132a99951
parent8ad4f89cf8da5111c7ad3f0e03042ba31a1ee485 (diff)
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.
-rw-r--r--libs/ardour/export_handler.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/export_handler.cc b/libs/ardour/export_handler.cc
index 62cb96f0fa..e755d9b70b 100644
--- a/libs/ardour/export_handler.cc
+++ b/libs/ardour/export_handler.cc
@@ -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;