From a6e9666f92d2082332d58e23aac43ebc8d85bdf2 Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Sun, 15 Dec 2019 02:43:08 +0100 Subject: [PATCH] Disable the unicity check --- src/sfizz/Synth.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/Synth.cpp b/src/sfizz/Synth.cpp index a31a6f44..e41a14dc 100644 --- a/src/sfizz/Synth.cpp +++ b/src/sfizz/Synth.cpp @@ -72,7 +72,7 @@ void sfz::Synth::callback(absl::string_view header, const std::vector& m break; case hash("control"): // We shouldn't have multiple control headers in file - ASSERT(!hasControl) + // ASSERT(!hasControl) hasControl = true; handleControlOpcodes(members); break;