From 8ee589f9bf992e6acbdf488f302a7268dc65cc9c Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Tue, 24 May 2016 01:17:23 +0200 Subject: [PATCH] added value to constants for global animations control --- src/anim.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/anim.c b/src/anim.c index 9097d88c..c5e1676e 100644 --- a/src/anim.c +++ b/src/anim.c @@ -56,9 +56,10 @@ #define ANIM_STATE_RUNNING (1 << 2) /* values for global animation control */ -#define ANIM_START 0 -#define ANIM_CONTINUE 1 -#define ANIM_STOP 2 +#define ANIM_NO_ACTION 0 +#define ANIM_START 1 +#define ANIM_CONTINUE 2 +#define ANIM_STOP 3 struct GlobalAnimPartControlInfo -- 2.34.1