Change the unsupported control assert to a message

This commit is contained in:
Paul Ferrand 2019-12-17 15:26:23 +01:00
parent 3f2184227a
commit 1c748e8c94

View file

@ -190,7 +190,7 @@ void sfz::Synth::handleControlOpcodes(const std::vector<Opcode>& members)
} }
default: default:
// Unsupported control opcode // Unsupported control opcode
ASSERTFALSE; DBG("Unsupported control opcode: " << member.opcode);
} }
} }
} }