Skip to content

Commit 2463fa9

Browse files
committed
Renamed "struct _Mix_Music" to "struct Mix_Music"
1 parent 623ef30 commit 2463fa9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/SDL3_mixer/SDL_mixer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ typedef enum Mix_MusicType {
230230
/**
231231
* The internal format for a music chunk interpreted via codecs
232232
*/
233-
typedef struct _Mix_Music Mix_Music;
233+
typedef struct Mix_Music Mix_Music;
234234

235235
/**
236236
* Open an audio device for playback.

src/music.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ static int music_volume = MIX_MAX_VOLUME;
6060
static Mix_Music *music_playing = NULL;
6161
SDL_AudioSpec music_spec;
6262

63-
struct _Mix_Music {
63+
struct Mix_Music {
6464
Mix_MusicInterface *interface;
6565
void *context;
6666

0 commit comments

Comments
 (0)