summaryrefslogtreecommitdiffstats
path: root/src/libs/engine/JackAudioDriver.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/engine/JackAudioDriver.cpp')
-rw-r--r--src/libs/engine/JackAudioDriver.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libs/engine/JackAudioDriver.cpp b/src/libs/engine/JackAudioDriver.cpp
index b9cbdb60..4f32beb4 100644
--- a/src/libs/engine/JackAudioDriver.cpp
+++ b/src/libs/engine/JackAudioDriver.cpp
@@ -299,8 +299,9 @@ JackAudioDriver::_process_cb(jack_nframes_t nframes)
// Run root patch
if (_root_patch)
- _root_patch->process(nframes, start_of_current_cycle, start_of_current_cycle + nframes);
-
+ _root_patch->process(_process_context, nframes, start_of_current_cycle,
+ start_of_current_cycle + nframes);
+
return 0;
}