aboutsummaryrefslogtreecommitdiff
path: root/engines/touche/resource.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/touche/resource.cpp')
-rw-r--r--engines/touche/resource.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/touche/resource.cpp b/engines/touche/resource.cpp
index 23b5e8afb5..1d57a5b036 100644
--- a/engines/touche/resource.cpp
+++ b/engines/touche/resource.cpp
@@ -45,14 +45,14 @@ struct CompressedSpeechFile {
};
static const CompressedSpeechFile compressedSpeechFilesTable[] = {
-#ifdef USE_MAD
- { "TOUCHE.SO3", Audio::makeMP3Stream },
+#ifdef USE_FLAC
+ { "TOUCHE.SOF", Audio::makeFlacStream },
#endif
#ifdef USE_VORBIS
{ "TOUCHE.SOG", Audio::makeVorbisStream },
#endif
-#ifdef USE_FLAC
- { "TOUCHE.SOF", Audio::makeFlacStream },
+#ifdef USE_MAD
+ { "TOUCHE.SO3", Audio::makeMP3Stream },
#endif
{ 0, 0 }
};