diff options
author | JP Cimalando <jpcima@users.noreply.github.com> | 2018-07-31 02:31:47 +0200 |
---|---|---|
committer | JP Cimalando <jpcima@users.noreply.github.com> | 2018-07-31 02:31:47 +0200 |
commit | e098e4285af6d565d7b603279ec6e9770ce88436 (patch) | |
tree | c3bb9838043fed8a682bf071d80c64c53f6150e3 /src/adlmidi_private.hpp | |
parent | 626354e6d686d20c43b4d9aa929b85840e6e1015 (diff) | |
download | libADLMIDI-e098e4285af6d565d7b603279ec6e9770ce88436.tar.gz libADLMIDI-e098e4285af6d565d7b603279ec6e9770ce88436.tar.bz2 libADLMIDI-e098e4285af6d565d7b603279ec6e9770ce88436.zip |
fix some warnings
Diffstat (limited to 'src/adlmidi_private.hpp')
-rw-r--r-- | src/adlmidi_private.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/adlmidi_private.hpp b/src/adlmidi_private.hpp index 6fe7ad2..0a7a1bb 100644 --- a/src/adlmidi_private.hpp +++ b/src/adlmidi_private.hpp @@ -601,7 +601,7 @@ public: enum { MaxNumPhysChans = 2, - MaxNumPhysItemCount = MaxNumPhysChans, + MaxNumPhysItemCount = MaxNumPhysChans }; /** @@ -858,7 +858,7 @@ public: Sustain_None = 0x00, Sustain_Pedal = 0x01, Sustain_Sostenuto = 0x02, - Sustain_ANY = Sustain_Pedal | Sustain_Sostenuto, + Sustain_ANY = Sustain_Pedal | Sustain_Sostenuto }; uint32_t sustained; char _padding[6]; @@ -999,7 +999,7 @@ public: Mode_GM = 0x00, Mode_GS = 0x01, Mode_XG = 0x02, - Mode_GM2 = 0x04, + Mode_GM2 = 0x04 }; //! MIDI Synthesizer mode uint32_t m_synthMode; |