aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/moves
diff options
context:
space:
mode:
authorPaul Gilbert2017-06-25 10:56:42 -0400
committerPaul Gilbert2017-06-25 10:56:42 -0400
commita04f35b4dfc0eddb98c4269edefbf7019e866ed5 (patch)
treef99c0fe56e4ec5489c76e994e906fb7f725a3119 /engines/titanic/moves
parentf16505b128c5aac2a0b4d8c18e360b14058149e1 (diff)
downloadscummvm-rg350-a04f35b4dfc0eddb98c4269edefbf7019e866ed5.tar.gz
scummvm-rg350-a04f35b4dfc0eddb98c4269edefbf7019e866ed5.tar.bz2
scummvm-rg350-a04f35b4dfc0eddb98c4269edefbf7019e866ed5.zip
TITANIC: Change Titania to use speech sound type
Diffstat (limited to 'engines/titanic/moves')
-rw-r--r--engines/titanic/moves/restricted_move.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/titanic/moves/restricted_move.cpp b/engines/titanic/moves/restricted_move.cpp
index 92804d473d..52ff280437 100644
--- a/engines/titanic/moves/restricted_move.cpp
+++ b/engines/titanic/moves/restricted_move.cpp
@@ -57,7 +57,8 @@ bool CRestrictedMove::MouseButtonDownMsg(CMouseButtonDownMsg *msg) {
playSound("a#17.wav");
petDisplayMessage(1, CHECK_IN_AT_RECEPTION);
} else if (compareViewNameTo("Titania.Node 1.S")) {
- playSound("z#226.wav");
+ CProximity prox(Audio::Mixer::kSpeechSoundType);
+ playSound("z#226.wav", prox);
changeView(_destination);
}