diff options
| author | Wohlstand <admin@wohlnet.ru> | 2017-11-24 11:41:57 +0300 |
|---|---|---|
| committer | Wohlstand <admin@wohlnet.ru> | 2017-11-24 11:41:57 +0300 |
| commit | 9b36ab247982ad6a441e1182ad744ab46c1e09eb (patch) | |
| tree | 52e5aa7d7c744753c894830a5995f2458202fbb5 | |
| parent | d640317366fc1857903c22e4cd54b75aa5ef859c (diff) | |
| download | libADLMIDI-9b36ab247982ad6a441e1182ad744ab46c1e09eb.tar.gz libADLMIDI-9b36ab247982ad6a441e1182ad744ab46c1e09eb.tar.bz2 libADLMIDI-9b36ab247982ad6a441e1182ad744ab46c1e09eb.zip | |
Small warning fix
| -rw-r--r-- | src/adlmidi_midiplay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/adlmidi_midiplay.cpp b/src/adlmidi_midiplay.cpp index c4fefb5..0f79424 100644 --- a/src/adlmidi_midiplay.cpp +++ b/src/adlmidi_midiplay.cpp @@ -1092,7 +1092,7 @@ bool MIDIplay::realTime_NoteOn(uint8_t channel, uint8_t note, uint8_t velocity) expected_mode = PercussionMap[midiins & 0xFF]; } - if(opl.four_op_category[a] != (uint32_t)expected_mode) + if(opl.four_op_category[a] != expected_mode) continue; } else |