From a632e7a3b3ffdf2d53590176f93d54262d22c560 Mon Sep 17 00:00:00 2001 From: Daniel Wolf Date: Thu, 11 Aug 2016 15:49:51 +0200 Subject: [PATCH] Fixed TSV export Exporter now terminates with shape X rather than A. --- src/Exporter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Exporter.cpp b/src/Exporter.cpp index 61deae5..3b430c2 100644 --- a/src/Exporter.cpp +++ b/src/Exporter.cpp @@ -51,7 +51,7 @@ void TSVExporter::exportShapes(const boost::filesystem::path& inputFilePath, con } // Output closed mouth with end time - outputStream << formatDuration(shapes.getRange().getEnd()) << "\t" << Shape::A << "\n"; + outputStream << formatDuration(shapes.getRange().getEnd()) << "\t" << Shape::X << "\n"; } void XMLExporter::exportShapes(const boost::filesystem::path& inputFilePath, const ContinuousTimeline& shapes, std::ostream& outputStream) {