aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/scalpel/scalpel_talk.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sherlock/scalpel/scalpel_talk.cpp')
-rw-r--r--engines/sherlock/scalpel/scalpel_talk.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/engines/sherlock/scalpel/scalpel_talk.cpp b/engines/sherlock/scalpel/scalpel_talk.cpp
index d85820e3dc..8261304675 100644
--- a/engines/sherlock/scalpel/scalpel_talk.cpp
+++ b/engines/sherlock/scalpel/scalpel_talk.cpp
@@ -537,12 +537,13 @@ void ScalpelTalk::talkWait(const byte *&str) {
}
}
-void ScalpelTalk::talk3DOMovieTrigger(int subIndex) {
- if (!IS_3DO) {
- // No 3DO? No movie!
- return;
- }
+void ScalpelTalk::switchSpeaker(int subIndex) {
+ // If it's the 3DO, pass on to start the actor's conversation movie
+ if (IS_3DO)
+ talk3DOMovieTrigger(subIndex);
+}
+void ScalpelTalk::talk3DOMovieTrigger(int subIndex) {
// Find out a few things that we need
int userSelector = _vm->_ui->_selector;
int scriptSelector = _scriptSelect;