From 1c748e8c94e648396422a397330b262ab10ff1a6 Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Tue, 17 Dec 2019 15:26:23 +0100 Subject: [PATCH] Change the unsupported control assert to a message --- 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 8bae75ad..5b295288 100644 --- a/src/sfizz/Synth.cpp +++ b/src/sfizz/Synth.cpp @@ -190,7 +190,7 @@ void sfz::Synth::handleControlOpcodes(const std::vector& members) } default: // Unsupported control opcode - ASSERTFALSE; + DBG("Unsupported control opcode: " << member.opcode); } } }