diff options
Diffstat (limited to 'engines/hopkins')
-rw-r--r-- | engines/hopkins/sound.cpp | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/engines/hopkins/sound.cpp b/engines/hopkins/sound.cpp index d86fc449ee..6b3149e247 100644 --- a/engines/hopkins/sound.cpp +++ b/engines/hopkins/sound.cpp @@ -275,11 +275,23 @@ void SoundManager::playAnimSound(int animFrame) { case 75: playSample(2); break; + case 95: + // This fixes an original bug in the Polish version of the bug, which was literally butchered for some reason + if (_vm->getLanguage() == Common::PL_POL) + playSample(3); + break; case 109: - playSample(3); + if (_vm->getLanguage() != Common::PL_POL) + playSample(3); + break; + case 108: + // This fixes an original bug in the Polish version of the bug, which was literally butchered for some reason + if (_vm->getLanguage() == Common::PL_POL) + playSample(4); break; case 122: - playSample(4); + if (_vm->getLanguage() != Common::PL_POL) + playSample(4); break; } } else if (_specialSoundNum == 1 && animFrame == 17) |