diff options
author | Andrei Karas <akaras@inbox.ru> | 2011-02-20 23:41:08 +0200 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2011-02-20 23:41:08 +0200 |
commit | 916399eb1d8d4ea37d7fe4047656cc1cfce2736b (patch) | |
tree | d73fc4ce452d6e9df273e9512de9e1da158ee9fd /testxml | |
parent | 722fc23e4399653f5a3c32d717e816e8583da11c (diff) | |
download | tools-916399eb1d8d4ea37d7fe4047656cc1cfce2736b.tar.gz tools-916399eb1d8d4ea37d7fe4047656cc1cfce2736b.tar.bz2 tools-916399eb1d8d4ea37d7fe4047656cc1cfce2736b.tar.xz tools-916399eb1d8d4ea37d7fe4047656cc1cfce2736b.zip |
testxml: Dont check long seuqenses for duplication.
Diffstat (limited to 'testxml')
-rwxr-xr-x | testxml/testxml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testxml/testxml.py b/testxml/testxml.py index 26054de..1269852 100755 --- a/testxml/testxml.py +++ b/testxml/testxml.py @@ -578,7 +578,7 @@ def testSpriteAction(file, name, action, numframes, iserr): name + ", direction: " + direction, False) if lastIndex1 == i1 and lastIndex2 == i2 and offsetX == lastOffsetX \ - and offsetY == lastOffsetY: + and offsetY == lastOffsetY and i1 == i2 and lastIndex1 == lastIndex2: showMsgSprite(file, "duplicate sequence animation for start=" \ + str(i1) + ", end=" + str(i2) + " action: " + \ name + ", direction: " + direction, False) |