Skip to content

Commit

Permalink
AUDIO: Add missing breaks to switch statement - CID 1003770
Browse files Browse the repository at this point in the history
A mistake in commit 3dc788d
  • Loading branch information
bluegr committed May 1, 2013
1 parent ce79ff4 commit 6c3e05e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions audio/midiparser_smf.cpp
Expand Up @@ -56,8 +56,10 @@ void MidiParser_SMF::property(int prop, int value) {
switch (prop) {
case mpMalformedPitchBends:
_malformedPitchBends = (value > 0);
break;
default:
MidiParser::property(prop, value);
break;
}
}

Expand Down

0 comments on commit 6c3e05e

Please sign in to comment.