diff options
author | David Robillard <d@drobilla.net> | 2008-07-29 05:50:52 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2008-07-29 05:50:52 +0000 |
commit | f0e920ab170569fc9eaf5858af2e9ae3e8d44993 (patch) | |
tree | 1e1fa0a7b2bfeb0e6ca4541c570f445fc4541ff0 /src/libs/engine/EventBuffer.hpp | |
parent | de58b508b28a42b072fb26d2633aa0af37ee7c0e (diff) | |
download | ingen-f0e920ab170569fc9eaf5858af2e9ae3e8d44993.tar.gz ingen-f0e920ab170569fc9eaf5858af2e9ae3e8d44993.tar.bz2 ingen-f0e920ab170569fc9eaf5858af2e9ae3e8d44993.zip |
Fix stateful port value setting stuff (trigger output ports on note/trigger/etc modules now work correctly).
git-svn-id: http://svn.drobilla.net/lad/ingen@1302 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/engine/EventBuffer.hpp')
-rw-r--r-- | src/libs/engine/EventBuffer.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libs/engine/EventBuffer.hpp b/src/libs/engine/EventBuffer.hpp index 20fde057..0c80d452 100644 --- a/src/libs/engine/EventBuffer.hpp +++ b/src/libs/engine/EventBuffer.hpp @@ -33,8 +33,8 @@ public: ~EventBuffer(); - void prepare_read(SampleCount nframes); - void prepare_write(SampleCount nframes); + void prepare_read(FrameTime start, SampleCount nframes); + void prepare_write(FrameTime start, SampleCount nframes); bool join(Buffer* buf); void unjoin(); |