diff options
author | Travis Howell | 2006-04-20 08:46:46 +0000 |
---|---|---|
committer | Travis Howell | 2006-04-20 08:46:46 +0000 |
commit | 25ca897466f78f77afd3f7f0bb409fa53ad7fc79 (patch) | |
tree | f14f961fa1fa607546ef3fc3a60d48bd1eff8cf2 | |
parent | b6783677b5c4f3133cfdc963e626fd836340ac59 (diff) | |
download | scummvm-rg350-25ca897466f78f77afd3f7f0bb409fa53ad7fc79.tar.gz scummvm-rg350-25ca897466f78f77afd3f7f0bb409fa53ad7fc79.tar.bz2 scummvm-rg350-25ca897466f78f77afd3f7f0bb409fa53ad7fc79.zip |
Fix typo in switchVoiceFile() for FF
svn-id: r22053
-rw-r--r-- | engines/simon/sound.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/simon/sound.cpp b/engines/simon/sound.cpp index c1275b6525..43be448187 100644 --- a/engines/simon/sound.cpp +++ b/engines/simon/sound.cpp @@ -662,7 +662,7 @@ void Sound::switchVoiceFile(const GameSpecificSettings *gss, uint disc) { } #endif if (!_hasVoiceFile) { - sprintf(filename, "%s%d.ogg", gss->speech_filename, disc); + sprintf(filename, "%s%d.wav", gss->speech_filename, disc); file->open(filename); if (file->isOpen() == false) { warning("switchVoiceFile: Can't load voice file %s", filename); |