icons moved, app sysmon added, app fsel added

This commit is contained in:
Kiss-Vamosi Gabor
2016-12-29 23:48:01 +01:00
parent 2f11b276ac
commit 72948cda48
49 changed files with 1056 additions and 345 deletions

View File

@@ -83,7 +83,7 @@ void anim_create(anim_t * anim_p)
memcpy(new_anim, anim_p, sizeof(anim_t));
/*Set the start value*/
new_anim->fp(new_anim->var, new_anim->start);
if(new_anim->fp != NULL) new_anim->fp(new_anim->var, new_anim->start);
}
/**
@@ -191,7 +191,7 @@ static void anim_task (void)
new_val = new_val >> ANIM_PATH_NORM_SHIFT;
new_val += a->start;
a->fp(a->var, new_val); /*Apply the calculated value*/
if(a->fp != NULL) a->fp(a->var, new_val); /*Apply the calculated value*/
/*If the time is elapsed the animation is ready*/
if(a->act_time >= a->time) {