From 60eea8c57f5a110321e3507fec85343f33966373 Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Sun, 9 Mar 2008 06:35:09 +0000 Subject: [PATCH] MUS_FLAC was stuck in the middle of the Mix_MusicType enum, instead of the end, which would break binary compatibility. Fixes Bugzilla #565. --- SDL_mixer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SDL_mixer.h b/SDL_mixer.h index 58e0713e..4d6907a2 100644 --- a/SDL_mixer.h +++ b/SDL_mixer.h @@ -103,9 +103,9 @@ typedef enum { MUS_MOD, MUS_MID, MUS_OGG, - MUS_FLAC, MUS_MP3, - MUS_MP3_MAD + MUS_MP3_MAD, + MUS_FLAC, } Mix_MusicType; /* The internal format for a music chunk interpreted via mikmod */