Changed "Fluidsynth" strings to "FluidSynth".

This commit is contained in:
Josh Green 2009-01-09 04:59:25 +00:00
parent 916aee60d8
commit 0d259294ba

View file

@ -80,14 +80,14 @@ new_fluid_coremidi_driver(fluid_settings_t* settings, handle_midi_event_func_t h
goto error_recovery; goto error_recovery;
} }
OSStatus result = MIDIClientCreate( CFSTR("Fluidsynth"), NULL, NULL, &client ); OSStatus result = MIDIClientCreate( CFSTR("FluidSynth"), NULL, NULL, &client );
if ( result != noErr ) { if ( result != noErr ) {
FLUID_LOG(FLUID_ERR, "Failed to create the MIDI input client"); FLUID_LOG(FLUID_ERR, "Failed to create the MIDI input client");
goto error_recovery; goto error_recovery;
} }
dev->client = client; dev->client = client;
result = MIDIDestinationCreate( client, CFSTR("Fluidsynth virtual port"), result = MIDIDestinationCreate( client, CFSTR("FluidSynth virtual port"),
fluid_coremidi_callback, (void *)dev, &endpoint ); fluid_coremidi_callback, (void *)dev, &endpoint );
if ( result != noErr ) { if ( result != noErr ) {
FLUID_LOG(FLUID_ERR, "Failed to create the MIDI input port. MIDI input not available."); FLUID_LOG(FLUID_ERR, "Failed to create the MIDI input port. MIDI input not available.");
@ -141,3 +141,4 @@ fluid_coremidi_callback(const MIDIPacketList *list, void *p, void *src)
} }
#endif /* COREMIDI_SUPPORT */ #endif /* COREMIDI_SUPPORT */