summaryrefslogtreecommitdiffstats
path: root/src/server/internals/Note.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-04-28 18:02:23 +0000
committerDavid Robillard <d@drobilla.net>2012-04-28 18:02:23 +0000
commit7477318adc8de5244fc314939c296ae74605eaa5 (patch)
tree36798177af008cf6c9331ac88347bead2c685cbe /src/server/internals/Note.cpp
parent6d16e5689c3249c18fea9c7e2454e2d527afdb09 (diff)
downloadingen-7477318adc8de5244fc314939c296ae74605eaa5.tar.gz
ingen-7477318adc8de5244fc314939c296ae74605eaa5.tar.bz2
ingen-7477318adc8de5244fc314939c296ae74605eaa5.zip
Fix MIDI input.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4306 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/server/internals/Note.cpp')
-rw-r--r--src/server/internals/Note.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/internals/Note.cpp b/src/server/internals/Note.cpp
index 1a21ed37..6eb6ffb2 100644
--- a/src/server/internals/Note.cpp
+++ b/src/server/internals/Note.cpp
@@ -195,8 +195,8 @@ NoteNode::note_on(ProcessContext& context, uint8_t note_num, uint8_t velocity, F
assert(time >= context.start() && time <= context.end());
assert(note_num <= 127);
- Key* key = &_keys[note_num];
- Voice* voice = NULL;
+ Key* key = &_keys[note_num];
+ Voice* voice = NULL;
uint32_t voice_num = 0;
if (key->state != Key::OFF) {