mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-04 20:55:48 +01:00
fix parentheses around expression that prevented port flags from being set for ltc slave
This commit is contained in:
parent
e6b12bd0aa
commit
12b48fff76
1 changed files with 1 additions and 1 deletions
|
|
@ -81,7 +81,7 @@ LTC_TransportMaster::init ()
|
|||
void
|
||||
LTC_TransportMaster::create_port ()
|
||||
{
|
||||
if ((_port = AudioEngine::instance()->register_input_port (DataType::AUDIO, string_compose ("%1 in", _name, false, TransportMasterPort))) == 0) {
|
||||
if ((_port = AudioEngine::instance()->register_input_port (DataType::AUDIO, string_compose ("%1 in", _name), false, TransportMasterPort)) == 0) {
|
||||
throw failed_constructor();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue