mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-21 01:05:59 +00:00
ASYLUM: fix kOpcodeSetCounterFromActorReactions
This commit is contained in:
parent
0a594dad99
commit
ab69b65e6a
@ -1647,7 +1647,7 @@ void Encounter::runScript() {
|
||||
break;
|
||||
|
||||
case kOpcodeSetCounterFromActorReactions:
|
||||
_scriptData.counter = getScene()->getActor()->hasMoreReactions(getVariableInv(entry.param2), _scriptData.vars[1]) ? 1 : 0;
|
||||
_scriptData.counter = getScene()->getActor()->hasMoreReactions(getVariableInv(entry.param2), _scriptData.vars[1]) ? 0 : 1;
|
||||
break;
|
||||
|
||||
case kOpcodePrepareMovie:
|
||||
|
Loading…
x
Reference in New Issue
Block a user