aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorVladimir Menshakov2009-11-07 09:16:00 +0000
committerVladimir Menshakov2009-11-07 09:16:00 +0000
commitac1f49d7c957c333b573b3399aa755ed22b20c2b (patch)
tree2307abad1c8bc8a5f0f6ce605d4e3d4af48a39d5 /engines
parentaaeafde32530607a253304fd6e966727886cdf12 (diff)
downloadscummvm-rg350-ac1f49d7c957c333b573b3399aa755ed22b20c2b.tar.gz
scummvm-rg350-ac1f49d7c957c333b573b3399aa755ed22b20c2b.tar.bz2
scummvm-rg350-ac1f49d7c957c333b573b3399aa755ed22b20c2b.zip
removed magic coordinates
svn-id: r45716
Diffstat (limited to 'engines')
-rw-r--r--engines/teenagent/actor.cpp8
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();