Fixed TSV export

Exporter now terminates with shape X rather than A.
This commit is contained in:
Daniel Wolf 2016-08-11 15:49:51 +02:00
parent 81111ef96a
commit a632e7a3b3
1 changed files with 1 additions and 1 deletions

View File

@ -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<Shape>& shapes, std::ostream& outputStream) {