mirror of
https://github.com/Polprzewodnikowy/N64FlashcartMenu.git
synced 2025-04-04 23:56:35 +02:00
fix enable sfx
improve documentation.
This commit is contained in:
parent
2452bc0373
commit
9bbee1e24a
@ -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__ */
|
||||
|
Loading…
x
Reference in New Issue
Block a user