diff options
author | Alyssa Milburn | 2012-07-09 09:11:31 +0200 |
---|---|---|
committer | Alyssa Milburn | 2012-07-09 09:11:31 +0200 |
commit | bed2eb20cdcfccc3bf1e9b24f7466b678332d601 (patch) | |
tree | 117a204964d61adc573c31c2484eedbdf11dee1d | |
parent | b8354e27ae1c81578d9ac279dcba9bf09ccec058 (diff) | |
download | scummvm-rg350-bed2eb20cdcfccc3bf1e9b24f7466b678332d601.tar.gz scummvm-rg350-bed2eb20cdcfccc3bf1e9b24f7466b678332d601.tar.bz2 scummvm-rg350-bed2eb20cdcfccc3bf1e9b24f7466b678332d601.zip |
MOHAWK: Restart anims when LiveText plays them.
-rw-r--r-- | engines/mohawk/livingbooks.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/mohawk/livingbooks.cpp b/engines/mohawk/livingbooks.cpp index 7f7df66e53..a0671d18d5 100644 --- a/engines/mohawk/livingbooks.cpp +++ b/engines/mohawk/livingbooks.cpp @@ -3464,7 +3464,7 @@ void LBLiveTextItem::update() { // TODO: check this in RE LBItem *item = _vm->getItemById(_words[_currentWord].itemId); if (item) - item->togglePlaying(false); + item->togglePlaying(false, true); _currentWord = 0xFFFF; } |