diff options
author | Paul Gilbert | 2017-07-06 15:31:07 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-07-06 15:31:07 -0400 |
commit | e04815f932f38b16187052c62a52cd86b4091fb6 (patch) | |
tree | 3a03e0c811391d4b87b45617ead83d5d7e6fd6a6 /engines/titanic/game | |
parent | 5e3ad4b236619d8b2892a5c6b3434d96a7976812 (diff) | |
download | scummvm-rg350-e04815f932f38b16187052c62a52cd86b4091fb6.tar.gz scummvm-rg350-e04815f932f38b16187052c62a52cd86b4091fb6.tar.bz2 scummvm-rg350-e04815f932f38b16187052c62a52cd86b4091fb6.zip |
TITANIC: Mark a few more sound playbacks as speech
Diffstat (limited to 'engines/titanic/game')
-rw-r--r-- | engines/titanic/game/parrot/parrot_nut_eater.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/titanic/game/parrot/parrot_nut_eater.cpp b/engines/titanic/game/parrot/parrot_nut_eater.cpp index 3068d54388..c8d944632f 100644 --- a/engines/titanic/game/parrot/parrot_nut_eater.cpp +++ b/engines/titanic/game/parrot/parrot_nut_eater.cpp @@ -81,12 +81,14 @@ bool CParrotNutEater::NutPuzzleMsg(CNutPuzzleMsg *msg) { } bool CParrotNutEater::MovieFrameMsg(CMovieFrameMsg *msg) { + CProximity prox(Audio::Mixer::kSpeechSoundType); + switch (msg->_frameNumber) { case 68: - playSound("z#214.wav"); + playSound("z#214.wav", prox); break; case 132: - playSound("z#216.wav"); + playSound("z#216.wav", prox); break; default: break; |