summaryrefslogtreecommitdiff
path: root/libs/ardour/track.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2014-10-10 13:22:45 -0400
committerPaul Davis <paul@linuxaudiosystems.com>2014-10-10 13:22:50 -0400
commitfa9780ba676e1b128d412d9daf8b51a48b209d90 (patch)
treed2761f35c75d76c536bd41152ea0afb1e9d81205 /libs/ardour/track.cc
parentd1e303247b56b4e0b1a9564969723989beaa0290 (diff)
subtle changes to accomplish two goals (1) playhead should stop where the user pressed stopped (2) captured regions should end where the playhead ends
Diffstat (limited to 'libs/ardour/track.cc')
-rw-r--r--libs/ardour/track.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/track.cc b/libs/ardour/track.cc
index d463be598f..222c2d81ba 100644
--- a/libs/ardour/track.cc
+++ b/libs/ardour/track.cc
@@ -766,9 +766,9 @@ Track::speed () const
}
void
-Track::prepare_to_stop (framepos_t p)
+Track::prepare_to_stop (framepos_t t, framepos_t a)
{
- _diskstream->prepare_to_stop (p);
+ _diskstream->prepare_to_stop (t, a);
}
void