mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-21 01:05:59 +00:00
ASYLUM: fix kActorStatusWalking2 updating
This commit is contained in:
parent
b725db3de0
commit
27f69f5a32
@ -507,13 +507,15 @@ void Actor::update() {
|
||||
|
||||
case kActorStatusWalking2:
|
||||
if (getWorld()->chapter == kChapter2) {
|
||||
if (_index > 12)
|
||||
if (_index > 12) {
|
||||
updateStatus12_Chapter2();
|
||||
return;
|
||||
}
|
||||
|
||||
if (_index == 11)
|
||||
if (_index == 11) {
|
||||
updateStatus12_Chapter2_Actor11();
|
||||
|
||||
return;
|
||||
return;
|
||||
}
|
||||
} else if (getWorld()->chapter == kChapter11) {
|
||||
switch (_index) {
|
||||
default:
|
||||
|
Loading…
x
Reference in New Issue
Block a user