mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-10 16:46:35 +01:00
fix typo in auditioner-seek
This commit is contained in:
parent
b4462b3d22
commit
0479405e2f
1 changed files with 1 additions and 1 deletions
|
|
@ -214,7 +214,7 @@ restart:
|
||||||
|
|
||||||
frameoffset_t audition_seek;
|
frameoffset_t audition_seek;
|
||||||
if (should_run && _session.is_auditioning()
|
if (should_run && _session.is_auditioning()
|
||||||
&& (audition_seek = _session.the_auditioner()->seek_frame()) > 0) {
|
&& (audition_seek = _session.the_auditioner()->seek_frame()) >= 0) {
|
||||||
boost::shared_ptr<Track> tr = boost::dynamic_pointer_cast<Track> (_session.the_auditioner());
|
boost::shared_ptr<Track> tr = boost::dynamic_pointer_cast<Track> (_session.the_auditioner());
|
||||||
tr->seek(audition_seek);
|
tr->seek(audition_seek);
|
||||||
_session.the_auditioner()->seek_response(audition_seek);
|
_session.the_auditioner()->seek_response(audition_seek);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue