From c35f3f773e68c0e787a8436393475d3269c421c9 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Wed, 24 Feb 2010 23:54:37 +0000 Subject: Tidy up Context and ProcessContext interfaces (ProcessContext only lives on as a useful type). git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2487 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/ingen.lv2/ingen_lv2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/engine/ingen.lv2') diff --git a/src/engine/ingen.lv2/ingen_lv2.cpp b/src/engine/ingen.lv2/ingen_lv2.cpp index fb145c53..424df46c 100644 --- a/src/engine/ingen.lv2/ingen_lv2.cpp +++ b/src/engine/ingen.lv2/ingen_lv2.cpp @@ -48,7 +48,7 @@ struct IngenLV2Driver : public Ingen::Driver { bool is_activated() const { return true; } void run(uint32_t nframes) { - _context.set_time_slice(nframes, _frame_time, _frame_time + nframes); + _context.locate(_frame_time, nframes, 0); if (_root_patch) _root_patch->process(_context); _frame_time += nframes; -- cgit v1.2.1