aboutsummaryrefslogtreecommitdiff
path: root/scumm/sound.cpp
diff options
context:
space:
mode:
authorMax Horn2003-05-25 00:30:48 +0000
committerMax Horn2003-05-25 00:30:48 +0000
commit54835862fbeccbd17cfb768e2a53d9b13efffa8f (patch)
treecf13e69faa7c211ba6b67cfca65f94a48c7ad0d7 /scumm/sound.cpp
parent95b7e01548640629736294d72c3ccc90be1c54e0 (diff)
downloadscummvm-rg350-54835862fbeccbd17cfb768e2a53d9b13efffa8f.tar.gz
scummvm-rg350-54835862fbeccbd17cfb768e2a53d9b13efffa8f.tar.bz2
scummvm-rg350-54835862fbeccbd17cfb768e2a53d9b13efffa8f.zip
cleanup
svn-id: r7920
Diffstat (limited to 'scumm/sound.cpp')
-rw-r--r--scumm/sound.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/scumm/sound.cpp b/scumm/sound.cpp
index d706e350c8..07d79425ac 100644
--- a/scumm/sound.cpp
+++ b/scumm/sound.cpp
@@ -1251,9 +1251,8 @@ int Sound::playBundleSound(char *sound) {
free(orig_ptr);
if (_scumm->_actorToPrintStrFor != 0xFF && _scumm->_actorToPrintStrFor != 0) {
- Actor *a = _scumm->derefActorSafe(_scumm->_actorToPrintStrFor, "playBundleSound");
- if (a)
- rate = (rate * a->talkFrequency) / 256;
+ Actor *a = _scumm->derefActor(_scumm->_actorToPrintStrFor, "playBundleSound");
+ rate = (rate * a->talkFrequency) / 256;
}
if (bits == 8) {