aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.cpp
diff options
context:
space:
mode:
authorMax Horn2004-03-15 03:33:08 +0000
committerMax Horn2004-03-15 03:33:08 +0000
commite2617f90a19f81861c09f4bd68da00d0e037a4eb (patch)
treece3c476acf2ccb80fe3f9214afa09d2783228ba3 /scumm/sound.cpp
parentac11c6231259439b22f886d52cf45e5225c44be9 (diff)
downloadscummvm-rg350-e2617f90a19f81861c09f4bd68da00d0e037a4eb.tar.gz
scummvm-rg350-e2617f90a19f81861c09f4bd68da00d0e037a4eb.tar.bz2
scummvm-rg350-e2617f90a19f81861c09f4bd68da00d0e037a4eb.zip
disambiguate the two talkingActor() methods (one was a getter, one a setter -- reflect that in the name)
svn-id: r13301
Diffstat (limited to 'scumm/sound.cpp')
-rw-r--r--scumm/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index 61e4da3d77..e46a43c929 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -423,7 +423,7 @@ void Sound::processSfxQueues() {
_talk_sound_mode = 0;
}
- const int act = _vm->talkingActor();
+ const int act = _vm->getTalkingActor();
if ((_sfxMode & 2) && act != 0) {
Actor *a;
bool b, finished;