mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-16 18:36:03 +01:00
NOOP: remove line split for conditional
This commit is contained in:
parent
3bf1538705
commit
098830c3d5
1 changed files with 1 additions and 2 deletions
|
|
@ -216,8 +216,7 @@ Butler::thread_work ()
|
|||
}
|
||||
|
||||
frameoffset_t audition_seek;
|
||||
if (should_run && _session.is_auditioning()
|
||||
&& (audition_seek = _session.the_auditioner()->seek_frame()) >= 0) {
|
||||
if (should_run && _session.is_auditioning() && (audition_seek = _session.the_auditioner()->seek_frame()) >= 0) {
|
||||
boost::shared_ptr<Track> tr = boost::dynamic_pointer_cast<Track> (_session.the_auditioner());
|
||||
DEBUG_TRACE (DEBUG::Butler, "seek the auditioner\n");
|
||||
tr->seek(audition_seek);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue