aboutsummaryrefslogtreecommitdiff
path: root/src/adlmidi_private.hpp
diff options
context:
space:
mode:
authorVitaly Novichkov <admin@wohlnet.ru>2018-06-01 00:46:17 +0300
committerVitaly Novichkov <admin@wohlnet.ru>2018-06-01 00:46:17 +0300
commit562f5cb9841109dc2ca213ffe976b11576733b79 (patch)
treedecf3d7c881e68c23e86850488bc347889669d77 /src/adlmidi_private.hpp
parent77cf2d49be3a88ea2b5972b70bb031b1475cb8c0 (diff)
parenta3785e894c562e721a08c1ac7f6c443bcb4c402a (diff)
downloadlibADLMIDI-562f5cb9841109dc2ca213ffe976b11576733b79.tar.gz
libADLMIDI-562f5cb9841109dc2ca213ffe976b11576733b79.tar.bz2
libADLMIDI-562f5cb9841109dc2ca213ffe976b11576733b79.zip
Merge branch 'master' into num-4ops
Diffstat (limited to 'src/adlmidi_private.hpp')
-rw-r--r--src/adlmidi_private.hpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/adlmidi_private.hpp b/src/adlmidi_private.hpp
index 0e3affe..ee73c61 100644
--- a/src/adlmidi_private.hpp
+++ b/src/adlmidi_private.hpp
@@ -508,8 +508,6 @@ public:
uint8_t panning, vibrato, aftertouch, sustain;
//! Per note Aftertouch values
uint8_t noteAftertouch[128];
- //! Zero-filled array. Is used to compare with note aftertouch range
- uint8_t noteAftertouch_Zero[128];
//! Is note aftertouch has any non-zero value
bool noteAfterTouchInUse;
char ____padding[6];
@@ -717,7 +715,6 @@ public:
vibrato = 0;
aftertouch = 0;
std::memset(noteAftertouch, 0, 128);
- std::memset(noteAftertouch_Zero, 0, 128);
noteAfterTouchInUse = false;
vibspeed = 2 * 3.141592653 * 5.0;
vibdepth = 0.5 / 127;