cleanup: fix really minor typo in comment

git-svn-id: https://micropolis.googlecode.com/svn/trunk/micropolis-java@572 d9718cc8-9f43-0410-858b-315f434eb58c
This commit is contained in:
jason@long.name 2013-02-23 12:54:04 +00:00
parent d9d42b1af2
commit b0bd5bab21

View file

@ -130,7 +130,7 @@ class Animate
// This array indicates which of those eight zones have an animation.
static boolean [] AniThis = {true, false, true, true, false, false, true, true };
// Up to two tiles can be animated. Arrays DX1,DXY indicate the relative
// Up to two tiles can be animated. Arrays DX1,DY1 indicate the relative
// position of the first animated tile.
static int [] DX1 = { -1, 0, 1, 0, 0, 0, 0, 1 };
static int [] DY1 = { -1, 0, -1, -1, 0, 0, -1, -1 };