From 42986dd46a9f4b431cf84f221b0813079e4724de Mon Sep 17 00:00:00 2001 From: Raimon Zamora Date: Thu, 24 Nov 2022 15:50:31 +0100 Subject: [PATCH] =?UTF-8?q?-=20Reorganitzaci=C3=B3=20de=20la=20cap=C3=A7al?= =?UTF-8?q?era?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jail_audio.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jail_audio.h b/jail_audio.h index 8d36e65..d7e09e5 100644 --- a/jail_audio.h +++ b/jail_audio.h @@ -15,18 +15,18 @@ void JA_PlayMusic(JA_Music music, const int loop = -1); void JA_PauseMusic(); void JA_ResumeMusic(); void JA_StopMusic(); +int JA_SetVolume(int volume); JA_Music_state JA_GetMusicState(); void JA_DeleteMusic(JA_Music music); JA_Sound JA_NewSound(Uint8* buffer, Uint32 length); JA_Sound JA_LoadSound(const char* filename); int JA_PlaySound(JA_Sound sound, const int loop = 0); +void JA_DeleteSound(JA_Sound sound); + void JA_PauseChannel(const int channel); void JA_ResumeChannel(const int channel); void JA_StopChannel(const int channel); JA_Channel_state JA_GetChannelState(const int channel); int JA_SetChannelVolume(const int channel, int volume); -void JA_DeleteSound(JA_Sound sound); - -int JA_SetVolume(int volume); \ No newline at end of file