From a6f954c365cc186bfd8770d088ffc3333c9224a8 Mon Sep 17 00:00:00 2001 From: Vladimir Menshakov Date: Sat, 14 Nov 2009 11:29:37 +0000 Subject: added cancel() for current action svn-id: r45890 --- engines/teenagent/teenagent.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'engines/teenagent/teenagent.cpp') diff --git a/engines/teenagent/teenagent.cpp b/engines/teenagent/teenagent.cpp index 51f736d397..f6de12b554 100644 --- a/engines/teenagent/teenagent.cpp +++ b/engines/teenagent/teenagent.cpp @@ -121,11 +121,11 @@ void TeenAgentEngine::use(Object *object) { object->rect.dump(); object->actor_rect.dump(); + action = kActionUse; if (object->actor_rect.valid()) scene->moveTo(Common::Point(object->actor_rect.right, object->actor_rect.bottom), object->actor_orientation); - if (object->actor_orientation > 0) + else if (object->actor_orientation > 0) scene->setOrientation(object->actor_orientation); - action = kActionUse; } void TeenAgentEngine::examine(const Common::Point &point, Object *object) { @@ -135,15 +135,15 @@ void TeenAgentEngine::examine(const Common::Point &point, Object *object) { if (object != NULL) { Common::Point dst = object->actor_rect.center(); debug(0, "click %d, %d, object %d, %d", point.x, point.y, dst.x, dst.y); + action = kActionExamine; if (object->actor_rect.valid()) scene->moveTo(dst, object->actor_orientation); - action = kActionExamine; dst_object = object; } else { debug(0, "click %d, %d", point.x, point.y); + action = kActionNone; scene->moveTo(point, 0, true); dst_object = NULL; - action = kActionNone; } } -- cgit v1.2.3