Disable the <control> unicity check

This commit is contained in:
Paul Ferrand 2019-12-15 02:43:08 +01:00
parent da6865d615
commit a6e9666f92

View file

@ -72,7 +72,7 @@ void sfz::Synth::callback(absl::string_view header, const std::vector<Opcode>& m
break;
case hash("control"):
// We shouldn't have multiple control headers in file
ASSERT(!hasControl)
// ASSERT(!hasControl)
hasControl = true;
handleControlOpcodes(members);
break;