aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/Machine.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-03-31 07:04:04 +0000
committerDavid Robillard <d@drobilla.net>2007-03-31 07:04:04 +0000
commit7416f0b38e8eec05aea63604bdf23b5905c15754 (patch)
tree6ea8d7b3c063f2c782ce41a874f855ee1cebc2c5 /src/engine/Machine.cpp
parentf8883a56e44a42e97ca84392fdbff61e11540fcd (diff)
downloadmachina-7416f0b38e8eec05aea63604bdf23b5905c15754.tar.gz
machina-7416f0b38e8eec05aea63604bdf23b5905c15754.tar.bz2
machina-7416f0b38e8eec05aea63604bdf23b5905c15754.zip
Fixed tempo skew (record vs playback).
Recording/building algorithm fixes. Polished up GUI things. git-svn-id: http://svn.drobilla.net/lad/machina@384 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/engine/Machine.cpp')
-rw-r--r--src/engine/Machine.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/engine/Machine.cpp b/src/engine/Machine.cpp
index 43fd280..2857e8b 100644
--- a/src/engine/Machine.cpp
+++ b/src/engine/Machine.cpp
@@ -83,6 +83,10 @@ Machine::reset()
assert(! node->is_active());
}
}
+
+ for (size_t i=0; i < MAX_ACTIVE_NODES; ++i) {
+ _active_nodes[i].reset();
+ }
_time = 0;
_is_finished = false;