From 6a50ba2308c6a9fc3eb733f310c87ed279b565ed Mon Sep 17 00:00:00 2001 From: Max Horn Date: Tue, 28 Sep 2004 19:28:59 +0000 Subject: Changed more of the actor class members to match our coding guidelines (in the future, when adding new member vars here, please always use our conventions, i.e. prefix them with _ and use CamelBackStyle svn-id: r15331 --- scumm/sound.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'scumm/sound.cpp') diff --git a/scumm/sound.cpp b/scumm/sound.cpp index 5330d66b56..bca0153dd8 100644 --- a/scumm/sound.cpp +++ b/scumm/sound.cpp @@ -560,15 +560,15 @@ void Sound::processSfxQueues() { if (a->isInCurrentRoom()) { if (isMouthSyncOff(_curSoundPos) && !_mouthSyncMode) { if (!_endOfMouthSync) - a->runActorTalkScript(a->talkStopFrame); + a->runActorTalkScript(a->_talkStopFrame); _mouthSyncMode = 0; } else if (isMouthSyncOff(_curSoundPos) == 0 && !_mouthSyncMode) { - a->runActorTalkScript(a->talkStartFrame); + a->runActorTalkScript(a->_talkStartFrame); _mouthSyncMode = 1; } if (_vm->_version <= 6 && finished) - a->runActorTalkScript(a->talkStopFrame); + a->runActorTalkScript(a->_talkStopFrame); } } -- cgit v1.2.3