aboutsummaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
Diffstat (limited to 'sound')
-rw-r--r--sound/audiocd.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/audiocd.cpp b/sound/audiocd.cpp
index 09713eaf0f..44fb35a5ef 100644
--- a/sound/audiocd.cpp
+++ b/sound/audiocd.cpp
@@ -49,15 +49,15 @@ struct TrackFormat {
static const TrackFormat s_trackFormats[] = {
/* decoderName, openTrackFunction */
+#ifdef USE_FLAC
+ { "Flac", getFlacTrack },
+#endif
#ifdef USE_VORBIS
{ "Ogg Vorbis", getVorbisTrack },
#endif
#ifdef USE_MAD
{ "MPEG Layer 3", getMP3Track },
#endif
-#ifdef USE_FLAC
- { "Flac", getFlacTrack },
-#endif
{ NULL, NULL } // Terminator
};