diff options
Diffstat (limited to 'testxml/testxml.py')
-rwxr-xr-x | testxml/testxml.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/testxml/testxml.py b/testxml/testxml.py index 7cec764..38326e8 100755 --- a/testxml/testxml.py +++ b/testxml/testxml.py @@ -510,7 +510,10 @@ def testSpriteAction(file, name, action, numframes, iserr): animations = None if animations == None or len(animations) == 0: - showMsgSprite(file, "no animation tags in action: " + name, False) + if name != "default": + showMsgSprite(file, "no animation tags in action: " + name, False) + else: + return framesid aniset = set() for animation in animations: @@ -644,7 +647,7 @@ def testSpriteAction(file, name, action, numframes, iserr): if label == "" or label is None: showMsgSprite(file, "no label attribute in goto tag " + name, iserr) - if cnt == 0 and name != "default": + if cnt == 0: showMsgSprite(file, "no frames or sequences in action: " + name, iserr) if "default" not in aniset: |