From f5aef674d3c7a6541932be6e835d4e35f4be7920 Mon Sep 17 00:00:00 2001 From: Jesse Chappell Date: Fri, 13 Jan 2006 01:03:03 +0000 Subject: [PATCH] removed comment git-svn-id: svn://localhost/trunk/ardour2@269 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/ardour/session_transport.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/ardour/session_transport.cc b/libs/ardour/session_transport.cc index 82b067a288..096267d0dd 100644 --- a/libs/ardour/session_transport.cc +++ b/libs/ardour/session_transport.cc @@ -631,7 +631,7 @@ Session::locate (jack_nframes_t target_frame, bool with_roll, bool with_flush, b RWLockMonitor dsm (diskstream_lock, false, __LINE__, __FILE__); for (DiskStreamList::iterator i = diskstreams.begin(); i != diskstreams.end(); ++i) { if ((*i)->record_enabled ()) { - cerr << "switching from input" << __FILE__ << __LINE__ << endl << endl; + //cerr << "switching from input" << __FILE__ << __LINE__ << endl << endl; (*i)->monitor_input (!auto_input); } } @@ -646,7 +646,7 @@ Session::locate (jack_nframes_t target_frame, bool with_roll, bool with_flush, b RWLockMonitor dsm (diskstream_lock, false, __LINE__, __FILE__); for (DiskStreamList::iterator i = diskstreams.begin(); i != diskstreams.end(); ++i) { if ((*i)->record_enabled ()) { - cerr << "switching to input" << __FILE__ << __LINE__ << endl << endl; + //cerr << "switching to input" << __FILE__ << __LINE__ << endl << endl; (*i)->monitor_input (true); } }