fixed bug with drawing animations with negative or zero width/height
authorHolger Schemel <info@artsoft.org>
Sat, 2 Apr 2016 08:13:39 +0000 (10:13 +0200)
committerHolger Schemel <info@artsoft.org>
Sat, 2 Apr 2016 08:13:39 +0000 (10:13 +0200)
src/cartoons.c

index 1d17518616808a94cd6b3471c9b5986802172668..e6b622dc94d51197069b3437e868abcca1ddf046 100644 (file)
@@ -583,6 +583,9 @@ void DrawGlobalAnimExt(int drawing_stage)
        else if (part->y > part->viewport_height - g->height)
          height -= (part->y - (part->viewport_height - g->height));
 
+       if (width <= 0 || height <= 0)
+         continue;
+
        dst_x += part->viewport_x;
        dst_y += part->viewport_y;