Skip to content

Commit

Permalink
Issue #71: Don't compare componentFlags and componentFlagsMask in -is…
Browse files Browse the repository at this point in the history
…UsingAppleSynth
  • Loading branch information
kris2point0 committed Mar 24, 2015
1 parent b34e1e6 commit aa30fd5
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions Source/MIKMIDISynthesizer.m
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,6 @@ - (BOOL)isUsingAppleSynth
if (description.componentManufacturer != appleSynthDescription.componentManufacturer) return NO;
if (description.componentType != appleSynthDescription.componentType) return NO;
if (description.componentSubType != appleSynthDescription.componentSubType) return NO;
if (description.componentFlags != appleSynthDescription.componentFlags) return NO;
if (description.componentFlagsMask != appleSynthDescription.componentFlagsMask) return NO;
return YES;
}

Expand Down

0 comments on commit aa30fd5

Please sign in to comment.