MOHAWK: Toggle the post-intro LB menu anim at the right time.

This commit is contained in:
Alyssa Milburn 2011-03-31 22:35:40 +02:00
parent 84c45eae37
commit 66269fa208

View File

@ -398,10 +398,6 @@ void MohawkEngine_LivingBooks::updatePage() {
// hard-coded control page startup
LBItem *item;
item = getItemById(10);
if (item)
item->togglePlaying(false);
uint16 page = _curPage;
if (getFeatures() & GF_LB_10) {
// Living Books 1.0 had the meanings of these pages reversed
@ -493,6 +489,12 @@ void MohawkEngine_LivingBooks::updatePage() {
for (uint32 i = 0; i < _items.size(); i++)
_items[i]->startPhase(_phase);
if (_curMode == kLBControlMode) {
LBItem *item = getItemById(10);
if (item)
item->togglePlaying(false);
}
_phase++;
break;