Skip to content

Commit 72c6405

Browse files
committed
Renamed "struct _Mix_Music" to "struct Mix_Music"
(cherry picked from commit 2463fa9)
1 parent 3174cba commit 72c6405

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/SDL_mixer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ typedef enum Mix_MusicType {
266266
/**
267267
* The internal format for a music chunk interpreted via codecs
268268
*/
269-
typedef struct _Mix_Music Mix_Music;
269+
typedef struct Mix_Music Mix_Music;
270270

271271
/**
272272
* Open the default 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 * volatile 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)