diff options
Diffstat (limited to 'src/engine/Machine.cpp')
-rw-r--r-- | src/engine/Machine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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); |