From 9aa275e0af59d5e7c9d4a5a0ead29161a4258b0a Mon Sep 17 00:00:00 2001 From: Jonathan Moore Liles Date: Wed, 11 Nov 2020 19:37:02 -0800 Subject: [PATCH] Mixer: Fix crash when disabling strip auto output. --- mixer/src/Module.H | 1 - 1 file changed, 1 deletion(-) diff --git a/mixer/src/Module.H b/mixer/src/Module.H index 294ddfb..f425fa4 100644 --- a/mixer/src/Module.H +++ b/mixer/src/Module.H @@ -262,7 +262,6 @@ public: Port *connected_port ( void ) const { - ASSERT( _type == Port::CONTROL, "Operation only available for control ports" ); return _connected.size() == 0 ? NULL : _connected.front(); }