summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuo Jinghua <sunmoon1997@gmail.com>2011-12-07 10:40:18 +0800
committerLuo Jinghua <sunmoon1997@gmail.com>2011-12-07 10:40:18 +0800
commit610e538c436043efc4bf0ade9d24cfcd49ecfc3f (patch)
treebf18224ab661271c82e04bf00f426a968f11d7ce
parentbb9e338690b5431102f5c75eb49f9583f408d1e4 (diff)
Make the priority of mod detection higher then mp3 and ogg
-rw-r--r--src/input.cpp2
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