mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-03 04:09:29 +01:00
remove superfluous if-branch (_session is checked a few lines above)
This commit is contained in:
parent
f7ebae85a7
commit
c194e4df18
1 changed files with 2 additions and 4 deletions
|
|
@ -324,11 +324,9 @@ AudioEngine::process_callback (pframes_t nframes)
|
|||
*/
|
||||
|
||||
if (_freewheeling && !Freewheel.empty()) {
|
||||
Freewheel (nframes);
|
||||
Freewheel (nframes);
|
||||
} else {
|
||||
if (_session) {
|
||||
_session->process (nframes);
|
||||
}
|
||||
_session->process (nframes);
|
||||
}
|
||||
|
||||
if (_freewheeling) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue