mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2025-02-23 12:21:39 +00:00
Changed "Fluidsynth" strings to "FluidSynth".
This commit is contained in:
parent
916aee60d8
commit
0d259294ba
1 changed files with 3 additions and 2 deletions
|
@ -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 */
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue