renamed variable
authorHolger Schemel <info@artsoft.org>
Sat, 23 Mar 2019 21:18:10 +0000 (22:18 +0100)
committerHolger Schemel <info@artsoft.org>
Sat, 23 Mar 2019 21:18:10 +0000 (22:18 +0100)
src/anim.c

index a531ceb84548eeec6059fa5ecea9d00100f01318..ff44369c1576c827007e44e8460f02affb2538be 100644 (file)
@@ -1635,14 +1635,14 @@ static void DoAnimationExt(void)
 
 static boolean DoGlobalAnim_EventAction(struct GlobalAnimPartControlInfo *part)
 {
 
 static boolean DoGlobalAnim_EventAction(struct GlobalAnimPartControlInfo *part)
 {
-  int anim_event_action = (part->init_event_state ?
-                          part->control_info.init_event_action :
-                          part->control_info.anim_event_action);
+  int event_action = (part->init_event_state ?
+                     part->control_info.init_event_action :
+                     part->control_info.anim_event_action);
 
 
-  if (anim_event_action == -1)
+  if (event_action == ANIM_EVENT_ACTION_NONE)
     return FALSE;
 
     return FALSE;
 
-  PushUserEvent(USEREVENT_ANIM_EVENT_ACTION, anim_event_action, 0);
+  PushUserEvent(USEREVENT_ANIM_EVENT_ACTION, event_action, 0);
 
   // check if further actions are allowed to be executed
   if (part->control_info.style & STYLE_MULTIPLE_ACTIONS)
 
   // check if further actions are allowed to be executed
   if (part->control_info.style & STYLE_MULTIPLE_ACTIONS)