From 9f3da0d87e9ca5183efd3493af8fea9ab8092d40 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 17 Apr 2007 04:50:53 +0000 Subject: Fixed possibly missed MIDI events. git-svn-id: http://svn.drobilla.net/lad/machina@451 a436a847-0d15-0410-975c-d299462d15a1 --- src/engine/Machine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/engine') diff --git a/src/engine/Machine.cpp b/src/engine/Machine.cpp index b09b924..0639881 100644 --- a/src/engine/Machine.cpp +++ b/src/engine/Machine.cpp @@ -260,7 +260,7 @@ Machine::run(const Raul::TimeSlice& time) // Must do comparison in ticks here to avoid rounding up and executing // an event outside the current cycle } else if (time.beats_to_ticks(earliest->exit_time()) - <= time.beats_to_ticks(cycle_end)) { + < time.beats_to_ticks(cycle_end)) { this_time += earliest->exit_time() - _time; _time = earliest->exit_time(); exit_node(sink, earliest); -- cgit v1.2.1