diff options
author | Luo Jinghua <sunmoon1997@gmail.com> | 2011-12-07 10:40:18 +0800 |
---|---|---|
committer | Luo Jinghua <sunmoon1997@gmail.com> | 2011-12-07 10:40:18 +0800 |
commit | 610e538c436043efc4bf0ade9d24cfcd49ecfc3f (patch) | |
tree | bf18224ab661271c82e04bf00f426a968f11d7ce /src | |
parent | bb9e338690b5431102f5c75eb49f9583f408d1e4 (diff) |
Make the priority of mod detection higher then mp3 and ogg
Diffstat (limited to 'src')
-rw-r--r-- | src/input.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input.cpp b/src/input.cpp index cae25b8..59dd44e 100644 --- a/src/input.cpp +++ b/src/input.cpp @@ -145,11 +145,11 @@ namespace audiere { // autodetect otherwise, in decreasing order of possibility of failure TRY_OPEN(FF_AIFF); TRY_OPEN(FF_WAV); + TRY_OPEN(FF_MOD); TRY_OPEN(FF_OGG); TRY_OPEN(FF_FLAC); TRY_OPEN(FF_SPEEX); TRY_OPEN(FF_MP3); - TRY_OPEN(FF_MOD); return 0; #ifndef NO_DUMB |