From cddccda9be195cb411d85c887a8f20b30d310d34 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Fri, 22 Jun 2018 07:34:11 +0200 Subject: Make filechannel attribute optional in instrument xml files. --- src/dgxmlparser.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/dgxmlparser.cc') diff --git a/src/dgxmlparser.cc b/src/dgxmlparser.cc index 8fdcec4..8599b2b 100644 --- a/src/dgxmlparser.cc +++ b/src/dgxmlparser.cc @@ -189,7 +189,8 @@ bool parseInstrumentFile(const std::string& filename, InstrumentDOM& dom) dom.samples.back().audiofiles.emplace_back(); res &= attrcpy(dom.samples.back().audiofiles.back().instrument_channel, audiofile, "channel"); res &= attrcpy(dom.samples.back().audiofiles.back().file, audiofile, "file"); - res &= attrcpy(dom.samples.back().audiofiles.back().filechannel, audiofile, "filechannel"); + dom.samples.back().audiofiles.back().filechannel = 1; // Defaults to channel 1 in mono (1-based) + res &= attrcpy(dom.samples.back().audiofiles.back().filechannel, audiofile, "filechannel", true); } } -- cgit v1.2.3