aboutsummaryrefslogtreecommitdiff
path: root/engines/teenagent
diff options
context:
space:
mode:
authorVladimir Menshakov2009-12-31 22:49:56 +0000
committerVladimir Menshakov2009-12-31 22:49:56 +0000
commit038c08eef3eb5da4ed65d6ddb2be902b9041f988 (patch)
treed2e12f068223f01f1e7822788658fcde263f3802 /engines/teenagent
parentd10fc79836c03647c5332475a5a43ccf489fc7c3 (diff)
downloadscummvm-rg350-038c08eef3eb5da4ed65d6ddb2be902b9041f988.tar.gz
scummvm-rg350-038c08eef3eb5da4ed65d6ddb2be902b9041f988.tar.bz2
scummvm-rg350-038c08eef3eb5da4ed65d6ddb2be902b9041f988.zip
removed magic first frame from actor
svn-id: r46806
Diffstat (limited to 'engines/teenagent')
-rw-r--r--engines/teenagent/actor.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/teenagent/actor.cpp b/engines/teenagent/actor.cpp
index 77bec914c5..ee35950187 100644
--- a/engines/teenagent/actor.cpp
+++ b/engines/teenagent/actor.cpp
@@ -79,7 +79,7 @@ Common::Rect Actor::render(Graphics::Surface *surface, const Common::Point &posi
}
if (index >= sizeof(frames_left_right))
- index = 1;
+ index = 0;
s = frames + frames_left_right[index];
dx = 11;
dy = 62;
@@ -93,7 +93,7 @@ Common::Rect Actor::render(Graphics::Surface *surface, const Common::Point &posi
}
if (index >= sizeof(frames_up))
- index = 1;
+ index = 0;
s = frames + frames_up[index];
dx = 11;
dy = 62;
@@ -107,7 +107,7 @@ Common::Rect Actor::render(Graphics::Surface *surface, const Common::Point &posi
}
if (index >= sizeof(frames_down))
- index = 1;
+ index = 0;
s = frames + frames_down[index];
dx = 11;
dy = 62;