color_int_t reanme to lv_color_int_t

This commit is contained in:
Gabor Kiss-Vamosi
2017-12-01 19:40:12 +01:00
parent 47f2e0a8f7
commit cabf623e11
8 changed files with 13 additions and 13 deletions

View File

@@ -918,7 +918,7 @@ void lv_obj_animate(lv_obj_t * obj, lv_anim_builtin_t type, uint16_t time, uint1
lv_obj_t * par = lv_obj_get_parent(obj);
/*Get the direction*/
bool out = (type & ANIM_DIR_MASK) == ANIM_IN ? false : true;
bool out = (type & ANIM_DIR_MASK) == LV_ANIM_IN ? false : true;
type = type & (~ANIM_DIR_MASK);
lv_anim_t a;