From e5ea600ba020236fcc2ed1c88b987ebb9b2b7aa5 Mon Sep 17 00:00:00 2001 From: Colin Fletcher Date: Fri, 19 Jun 2015 16:12:07 +0100 Subject: 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. --- libs/ardour/export_handler.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libs/ardour/export_handler.cc') 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; -- cgit v1.2.3