From 69ec0335692c5e18ca09c091df5a75f022f503f7 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Sat, 2 Apr 2016 10:13:39 +0200 Subject: [PATCH] fixed bug with drawing animations with negative or zero width/height --- src/cartoons.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/cartoons.c b/src/cartoons.c index 1d175186..e6b622dc 100644 --- a/src/cartoons.c +++ b/src/cartoons.c @@ -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; -- 2.34.1