From f288a0c1b9321c6da8bc96acf6fd965baadc214d Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Thu, 9 May 2024 13:40:49 -0400
Subject: [PATCH] include: Some fixes to make wikiheaders happy.
(cherry picked from commit 7cd1c8da21c6f232a029fe035612a72b1ae637a8)
---
include/SDL_mixer.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/SDL_mixer.h b/include/SDL_mixer.h
index e763fb27e..48190c475 100644
--- a/include/SDL_mixer.h
+++ b/include/SDL_mixer.h
@@ -105,7 +105,7 @@ extern DECLSPEC const SDL_version * SDLCALL Mix_Linked_Version(void);
/**
* Initialization flags
*/
-typedef enum
+typedef enum MIX_InitFlags
{
MIX_INIT_FLAC = 0x00000001,
MIX_INIT_MOD = 0x00000002,
@@ -237,7 +237,7 @@ typedef struct Mix_Chunk {
/**
* The different fading types supported
*/
-typedef enum {
+typedef enum Mix_Fading {
MIX_NO_FADING,
MIX_FADING_OUT,
MIX_FADING_IN
@@ -246,7 +246,7 @@ typedef enum {
/**
* These are types of music files (not libraries used to load them)
*/
-typedef enum {
+typedef enum Mix_MusicType {
MUS_NONE,
MUS_CMD,
MUS_WAV,