13
0

removed comment

git-svn-id: svn://localhost/trunk/ardour2@269 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Jesse Chappell 2006-01-13 01:03:03 +00:00
parent b1fdf3a399
commit f5aef674d3

View File

@ -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);
}
}