Fix typo in switchVoiceFile() for FF

svn-id: r22053
This commit is contained in:
Travis Howell 2006-04-20 08:46:46 +00:00
parent b6783677b5
commit 25ca897466

View file

@ -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);