diff options
author | Max Horn | 2007-02-24 23:40:28 +0000 |
---|---|---|
committer | Max Horn | 2007-02-24 23:40:28 +0000 |
commit | b3931a847d21b0770f7b30bd1e4c793dc283abf3 (patch) | |
tree | 07d97cf6a807d684f307fd81867f275e1ac89a42 /engines/touche | |
parent | 65b30d84a805a7b22322474970a219d5628997d5 (diff) | |
download | scummvm-rg350-b3931a847d21b0770f7b30bd1e4c793dc283abf3.tar.gz scummvm-rg350-b3931a847d21b0770f7b30bd1e4c793dc283abf3.tar.bz2 scummvm-rg350-b3931a847d21b0770f7b30bd1e4c793dc283abf3.zip |
Trying to unify the order in which we try the various audio formats: Prefer FLAC (lossless) over Ogg Vorbis ('free') over MP3 -- the order is admittedly somewhat arbitrary, but at least now it's consistent across all parts of ScummVM
svn-id: r25837
Diffstat (limited to 'engines/touche')
-rw-r--r-- | engines/touche/resource.cpp | 8 |
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 } }; |