diff options
author | rekado <rekado@elephly.net> | 2013-01-16 07:45:41 +0800 |
---|---|---|
committer | rekado <rekado@elephly.net> | 2013-01-16 07:45:41 +0800 |
commit | 9e2d18d07bc7c88a5fb6fee99f960d559205806e (patch) | |
tree | 58f6d400f25f3a34383ed611c9eccb08d8f763e2 | |
parent | d4c8d0754ae1dc7bdbd8ae9da6df10394333bf84 (diff) |
fix: key -> note
-rw-r--r-- | src/mdaPianoVoice.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mdaPianoVoice.cpp b/src/mdaPianoVoice.cpp index b229062..abb6a95 100644 --- a/src/mdaPianoVoice.cpp +++ b/src/mdaPianoVoice.cpp @@ -48,7 +48,7 @@ float mdaPianoVoice::p_helper(unsigned short id, Param d) { void mdaPianoVoice::on(unsigned char note, unsigned char velocity) { // store key that turned this voice on (used in 'get_key') - m_key = key; + m_key = note; // TODO: replace with this voice's local copy float * param = programs[curProgram].param; |