diff options
Diffstat (limited to 'engines/sherlock/scalpel/scalpel_scene.cpp')
-rw-r--r-- | engines/sherlock/scalpel/scalpel_scene.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sherlock/scalpel/scalpel_scene.cpp b/engines/sherlock/scalpel/scalpel_scene.cpp index e3bc6483eb..47ec639559 100644 --- a/engines/sherlock/scalpel/scalpel_scene.cpp +++ b/engines/sherlock/scalpel/scalpel_scene.cpp @@ -660,7 +660,7 @@ int ScalpelScene::startCAnim(int cAnimNum, int playRate) { if (tpPos.x != -1) { people[PLAYER]._position = tpPos; // Place the player people[PLAYER]._sequenceNumber = tpDir; - people.gotoStand(people[PLAYER]); + people[PLAYER].gotoStand(); } if (playRate < 0) @@ -689,7 +689,7 @@ int ScalpelScene::startCAnim(int cAnimNum, int playRate) { people[PLAYER]._position = tpPos; people[PLAYER]._sequenceNumber = tpDir; - people.gotoStand(people[PLAYER]); + people[PLAYER].gotoStand(); } events.setCursor(oldCursor); |