remove superfluous if-branch (_session is checked a few lines above)

This commit is contained in:
Robin Gareus 2014-11-18 01:09:00 +01:00
parent f7ebae85a7
commit c194e4df18

View File

@ -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) {