From 9fe440e80c6cad24aa98eee6af2c96f70b05aace Mon Sep 17 00:00:00 2001 From: GZharun Date: Sat, 29 Nov 2014 16:24:49 +0200 Subject: [PATCH] [Summary] Disable attempts to reconnect LTC ports as LTC currently is not supported by Tracks --- libs/ardour/session.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index 29acd8a87c..2207f323b7 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -6017,8 +6017,9 @@ Session::ltc_output_port () const void Session::reconnect_ltc_input () { + // GZ: Waves Tracks - ltc is disabled for this version if (_ltc_input) { - +#if 0 string src = Config->get_ltc_source_port(); _ltc_input->disconnect (this); @@ -6026,14 +6027,15 @@ Session::reconnect_ltc_input () if (src != _("None") && !src.empty()) { _ltc_input->nth (0)->connect (src); } +#endif } } void Session::reconnect_ltc_output () { + // GZ: Waves Tracks - ltc is disabled for this version if (_ltc_output) { - #if 0 string src = Config->get_ltc_sink_port();