mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-03 17:33:05 +00:00
MOHAWK: Toggle the post-intro LB menu anim at the right time.
This commit is contained in:
parent
84c45eae37
commit
66269fa208
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user