Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cute_sound.h
Original file line number Diff line number Diff line change
Expand Up @@ -915,9 +915,9 @@ typedef struct cs_context_t
float music_volume /* = 1.0f */;
float music_pitch /* = 1.0f */;
float sound_volume /* = 1.0f */;
void (*on_finish)(cs_playing_sound_t, void*); /* = NULL */;
void (*on_finish)(cs_playing_sound_t, void*); /* = NULL */
void* on_finish_udata /* = NULL */;
void (*on_music_finish)(void*); /* = NULL */;
void (*on_music_finish)(void*); /* = NULL */
void* on_music_finish_udata /* = NULL */;

bool music_paused /* = false */;
Expand Down