swapped talkPosX and talkPosY (they were misnamed); factored out some duplicate code in string.cpp; VC warning fix in smush_player.cpp
svn-id: r7481
This commit is contained in:
parent
47227fdf77
commit
81bfe8cd51
5 changed files with 16 additions and 21 deletions
|
@ -1121,8 +1121,8 @@ void Scumm_v8::o8_actorOps() {
|
|||
a->shadow_mode = pop();
|
||||
break;
|
||||
case 0x79: // SO_ACTOR_TEXT_OFFSET Set text offset relative to actor
|
||||
a->talkPosX = pop();
|
||||
a->talkPosY = pop();
|
||||
a->talkPosX = pop();
|
||||
break;
|
||||
// case 0x7A: // SO_ACTOR_INIT Set current actor (handled above)
|
||||
case 0x7B: // SO_ACTOR_VARIABLE Set actor variable
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue