From 5d31861d0469803eff9e76c6213464ac006236d7 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Tue, 28 May 2019 19:42:54 +0200 Subject: [PATCH] fixed detecting running animations ('restart' bit may also be set) --- src/anim.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/anim.c b/src/anim.c index 363c76fc..28af9c00 100644 --- a/src/anim.c +++ b/src/anim.c @@ -1158,7 +1158,7 @@ static void InitGlobalAnim_Triggered(struct GlobalAnimPartControlInfo *part, { struct GlobalAnimPartControlInfo *part2 = &anim2->part[part2_nr]; - if (part2->state != ANIM_STATE_RUNNING) + if (!(part2->state & ANIM_STATE_RUNNING)) continue; if (isClickablePart(part2, mask)) @@ -1791,7 +1791,7 @@ static boolean InitGlobalAnim_Clicked(int mx, int my, int clicked_event) if (!part->clickable) continue; - if (part->state != ANIM_STATE_RUNNING) + if (!(part->state & ANIM_STATE_RUNNING)) continue; // always handle "any" click events (clicking anywhere on screen) ... -- 2.34.1