summaryrefslogtreecommitdiff
path: root/libs/ardour/session_transport.cc
diff options
context:
space:
mode:
authorJesse Chappell <jesse@essej.net>2006-01-13 01:03:03 +0000
committerJesse Chappell <jesse@essej.net>2006-01-13 01:03:03 +0000
commitf5aef674d3c7a6541932be6e835d4e35f4be7920 (patch)
tree7c4f04409d3f4270210f5945a0c23a85ea83ce25 /libs/ardour/session_transport.cc
parentb1fdf3a3994c86919ff072a59a4ea7cfb8e079a0 (diff)
removed comment
git-svn-id: svn://localhost/trunk/ardour2@269 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session_transport.cc')
-rw-r--r--libs/ardour/session_transport.cc4
1 files 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);
}
}