Update API docs on fluid_player_set_bpm()

Resolves #624
This commit is contained in:
derselbst 2020-03-20 19:57:43 +01:00
parent eff728753b
commit 631c9798cb

View file

@ -2207,6 +2207,7 @@ int fluid_player_set_loop(fluid_player_t *player, int loop)
* @param player MIDI player instance
* @param tempo Tempo to set playback speed to (in microseconds per quarter note, as per MIDI file spec)
* @return Always returns #FLUID_OK
* @note Tempo change events contained in the MIDI file can override the specified tempo at any time!
*/
int fluid_player_set_midi_tempo(fluid_player_t *player, int tempo)
{
@ -2227,6 +2228,7 @@ int fluid_player_set_midi_tempo(fluid_player_t *player, int tempo)
* @param player MIDI player instance
* @param bpm Tempo in beats per minute
* @return Always returns #FLUID_OK
* @note Tempo change events contained in the MIDI file can override the specified BPM at any time!
*/
int fluid_player_set_bpm(fluid_player_t *player, int bpm)
{