diff options
author | Vladimir Menshakov | 2009-11-07 09:16:00 +0000 |
---|---|---|
committer | Vladimir Menshakov | 2009-11-07 09:16:00 +0000 |
commit | ac1f49d7c957c333b573b3399aa755ed22b20c2b (patch) | |
tree | 2307abad1c8bc8a5f0f6ce605d4e3d4af48a39d5 | |
parent | aaeafde32530607a253304fd6e966727886cdf12 (diff) | |
download | scummvm-rg350-ac1f49d7c957c333b573b3399aa755ed22b20c2b.tar.gz scummvm-rg350-ac1f49d7c957c333b573b3399aa755ed22b20c2b.tar.bz2 scummvm-rg350-ac1f49d7c957c333b573b3399aa755ed22b20c2b.zip |
removed magic coordinates
svn-id: r45716
-rw-r--r-- | engines/teenagent/actor.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/teenagent/actor.cpp b/engines/teenagent/actor.cpp index 2d1874da19..bedb3ce55c 100644 --- a/engines/teenagent/actor.cpp +++ b/engines/teenagent/actor.cpp @@ -51,15 +51,15 @@ Common::Rect Actor::render(Graphics::Surface *surface, const Common::Point &posi if (index >= sizeof(frames_up)) index = 1; s = frames + frames_up[index]; - dx = 29; - dy = 67; + dx = 11; + dy = 62; break; case Object::kActorDown: if (index >= sizeof(frames_down)) index = 1; s = frames + frames_down[index]; - dx = 29; - dy = 67; + dx = 11; + dy = 62; break; default: return Common::Rect(); |