new constant MF_FROZEN; fixed actor unfreeze code

svn-id: r6764
This commit is contained in:
Max Horn 2003-03-08 02:06:56 +00:00
parent c739960176
commit 6316f83c93
3 changed files with 6 additions and 5 deletions

View file

@ -1712,10 +1712,10 @@ void Scumm_v6::o6_actorOps() {
a->turnToDirection(pop());
break;
case 233: /* freeze actor */
a->moving |= 0x80;
a->moving |= MF_FROZEN;
break;
case 234: /* unfreeze actor */
a->moving &= ~0x7f;
a->moving &= ~MF_FROZEN;
break;
case 235: /* talk_script */
a->talk_script = pop();