diff options
author | Wohlstand <admin@wohlnet.ru> | 2016-12-07 18:35:49 +0300 |
---|---|---|
committer | Wohlstand <admin@wohlnet.ru> | 2016-12-07 18:35:49 +0300 |
commit | d538d57803c7651a36a720eb4ae4d53fb0efacab (patch) | |
tree | bfbc9a114a1b158e3f56a29e8e7da8d7c38f4504 /src | |
parent | 46b4bbe9eafdf720809ef385de2efb4433905406 (diff) | |
download | libADLMIDI-d538d57803c7651a36a720eb4ae4d53fb0efacab.tar.gz libADLMIDI-d538d57803c7651a36a720eb4ae4d53fb0efacab.tar.bz2 libADLMIDI-d538d57803c7651a36a720eb4ae4d53fb0efacab.zip |
Fix another Android NDK's warning
(this member is already initialized in constructor!)
Diffstat (limited to 'src')
-rw-r--r-- | src/adlmidi.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/adlmidi.cpp b/src/adlmidi.cpp index c248c91..6372f55 100644 --- a/src/adlmidi.cpp +++ b/src/adlmidi.cpp @@ -665,7 +665,7 @@ class MIDIplay activenotes() { } }; std::vector<MIDIchannel> Ch; - bool cmf_percussion_mode = false; + bool cmf_percussion_mode; // Additional information about AdLib channels struct AdlChannel |