Skip to content

Commit

Permalink
fix return type of FLUIDSYNTH_Resume
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCycoONE committed Feb 17, 2024
1 parent f0cf5b2 commit 6356d14
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/codecs/music_fluidsynth.c
Original file line number Diff line number Diff line change
Expand Up @@ -286,11 +286,10 @@ static int FLUIDSYNTH_Play(void *context, int play_count)
return 0;
}

static int FLUIDSYNTH_Resume(void *context)
static void FLUIDSYNTH_Resume(void *context)
{
FLUIDSYNTH_Music *music = (FLUIDSYNTH_Music *)context;
fluidsynth.fluid_player_play(music->player);
return 0;
}

static SDL_bool FLUIDSYNTH_IsPlaying(void *context)
Expand Down

0 comments on commit 6356d14

Please sign in to comment.