MidiWinMM: added missing break directive after case-block
A break directive was missing in MidiWinMM::handleInputEvent(), leading
to inappropriate calls to qWarning() on pitch bend.
(cherry picked from commit 58023cf2cf)
This commit is contained in:
@@ -242,6 +242,8 @@ void midiWinMM::handleInputEvent( HMIDIIN _hm, DWORD _ev )
|
||||
midiEvent( cmdtype, chan,
|
||||
par1 + par2*128, 0 ),
|
||||
midiTime() );
|
||||
break;
|
||||
|
||||
default:
|
||||
qWarning( "WinMM-MIDI: unhandled input "
|
||||
"event %d\n", cmdtype );
|
||||
|
||||
Reference in New Issue
Block a user