Remove "" around CATALOG number in .cue file
authorColin Fletcher <colin.m.fletcher@googlemail.com>
Fri, 19 Jun 2015 15:12:07 +0000 (16:12 +0100)
committerColin Fletcher <colin.m.fletcher@googlemail.com>
Sun, 21 Jun 2015 13:48:33 +0000 (14:48 +0100)
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.

libs/ardour/export_handler.cc

index 62cb96f0fab0a0e44c3f8e30ac940bf932ee26e0..e755d9b70b2e772b2e6f26838fad5738eaae1363 100644 (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;