ignore slave/engine time-delta when recording.

git-svn-id: svn://localhost/ardour2/branches/3.0@13227 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Robin Gareus
2012-10-10 14:03:18 +00:00
parent a2b4128035
commit 29825092ae

View File

@@ -583,7 +583,7 @@ Session::follow_slave (pframes_t nframes)
}
#if 1
if ((framecnt_t) abs(average_slave_delta) > _slave->resolution()) {
if (!actively_recording() && (framecnt_t) abs(average_slave_delta) > _slave->resolution()) {
cerr << "average slave delta greater than slave resolution (" << _slave->resolution() << "), going to silent motion\n";
goto silent_motion;
}