From 30c03c0c451fdd874ba4a926deda9570610812b8 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Tue, 4 May 2021 11:28:28 -0600 Subject: [PATCH] remove commented debug output --- libs/ardour/session.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/session.cc b/libs/ardour/session.cc index fc8a147b8f..a197c7cb74 100644 --- a/libs/ardour/session.cc +++ b/libs/ardour/session.cc @@ -1390,10 +1390,10 @@ void Session::set_track_monitor_input_status (bool yn) { boost::shared_ptr rl = routes.reader (); + for (RouteList::iterator i = rl->begin(); i != rl->end(); ++i) { boost::shared_ptr tr = boost::dynamic_pointer_cast (*i); if (tr && tr->rec_enable_control()->get_value()) { - //cerr << "switching to input = " << !auto_input << __FILE__ << __LINE__ << endl << endl; tr->request_input_monitoring (yn); } }