From b0bd5bab21695226cb7cd6f63fab9519b3f60bfa Mon Sep 17 00:00:00 2001 From: "jason@long.name" Date: Sat, 23 Feb 2013 12:54:04 +0000 Subject: [PATCH] cleanup: fix really minor typo in comment git-svn-id: https://micropolis.googlecode.com/svn/trunk/micropolis-java@572 d9718cc8-9f43-0410-858b-315f434eb58c --- src/micropolisj/engine/Animate.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/micropolisj/engine/Animate.java b/src/micropolisj/engine/Animate.java index c36bc96..65d569d 100644 --- a/src/micropolisj/engine/Animate.java +++ b/src/micropolisj/engine/Animate.java @@ -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 };