From 05ed31a9800443f533b39ea5877ea8640017126d Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 30 Jul 2013 02:27:06 +0200 Subject: [PATCH] fix issue with generator plugins and no-roll disk monitoring --- libs/ardour/route.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc index 1eb92c68aa..c16b962f34 100644 --- a/libs/ardour/route.cc +++ b/libs/ardour/route.cc @@ -597,7 +597,7 @@ Route::passthru (BufferSet& bufs, framepos_t start_frame, framepos_t end_frame, void Route::passthru_silence (framepos_t start_frame, framepos_t end_frame, pframes_t nframes, int declick) { - BufferSet& bufs (_session.get_silent_buffers (n_process_buffers())); + BufferSet& bufs (_session.get_scratch_buffers (n_process_buffers())); bufs.set_count (_input->n_ports()); write_out_of_band_data (bufs, start_frame, end_frame, nframes);