fix typo in auditioner-seek
authorRobin Gareus <robin@gareus.org>
Thu, 16 Jan 2014 23:25:32 +0000 (00:25 +0100)
committerRobin Gareus <robin@gareus.org>
Thu, 16 Jan 2014 23:25:32 +0000 (00:25 +0100)
libs/ardour/butler.cc

index e37734f2618098e4c925792258c664295426295d..03ae7867db5bcf4ccbefe50b0e7bd5354aab2ab8 100644 (file)
@@ -214,7 +214,7 @@ restart:
 
                frameoffset_t audition_seek;
                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());
                        tr->seek(audition_seek);
                        _session.the_auditioner()->seek_response(audition_seek);