diff --git a/src/menu/sound.h b/src/menu/sound.h index 97d83d23..f0fee92e 100644 --- a/src/menu/sound.h +++ b/src/menu/sound.h @@ -52,16 +52,31 @@ void sound_init_sfx(void); /** * @brief Enable or disable sound effects. + * * @param enable True to enable sound effects, false to disable. */ -void sound_use_sfx(bool); +void sound_use_sfx(bool enable); /** * @brief Play a specified sound effect. + * * @param sfx The sound effect to play, as defined in sound_effect_t. */ void sound_play_effect(sound_effect_t sfx); -void sound_deinit (void); -void sound_poll (void); + +/** + * @brief Deinitialize the sound system. + * + * This function deinitializes the sound system, releasing any resources + * that were allocated. + */ +void sound_deinit(void); + +/** + * @brief Poll the sound system. + * + * This function polls the sound system, updating its state as necessary. + */ +void sound_poll(void); #endif /* SOUND_H__ */