13
0

fix optimized unused variable warning

This commit is contained in:
Paul Davis 2022-06-21 18:42:58 -06:00
parent 4878c48386
commit 6fd4c01fc9

View File

@ -430,7 +430,7 @@ Surface::toggle_master_monitor ()
{
_master_stripable = _mcp.get_session().monitor_out();
} else { return; }
_master_fader->set_control (_master_stripable->gain_control());
_master_stripable->gain_control()->Changed.connect (master_connection, MISSING_INVALIDATOR, boost::bind (&Surface::master_gain_changed, this), ui_context());
_last_master_gain_written = FLT_MAX;
@ -467,13 +467,16 @@ Surface::setup_master ()
_master_fader = dynamic_cast<Fader*> (Fader::factory (*this, device_info.strip_cnt(), "master", *master_group));
GlobalButtonInfo master_button = device_info.get_global_button(Button::MasterFaderTouch);
Button* bb = dynamic_cast<Button*> (Button::factory (
*this,
Button::MasterFaderTouch,
master_button.id,
master_button.label,
*(group_it->second)
));
#ifndef NDEBUG
Button* bb =
#endif
dynamic_cast<Button*> (Button::factory (
*this,
Button::MasterFaderTouch,
master_button.id,
master_button.label,
*(group_it->second)
));
DEBUG_TRACE (DEBUG::MackieControl, string_compose ("surface %1 Master Fader new button BID %2 id %3\n",
number(), Button::MasterFaderTouch, bb->id()));