From 321a08b42e22d55ba79da0bfbac027f2bb084ae9 Mon Sep 17 00:00:00 2001 From: Folke Will Date: Sat, 9 Feb 2019 13:48:09 +0100 Subject: [PATCH] Retain formatting --- lv_misc/lv_color.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lv_misc/lv_color.h b/lv_misc/lv_color.h index e386d69f5..6afdc06b0 100644 --- a/lv_misc/lv_color.h +++ b/lv_misc/lv_color.h @@ -399,8 +399,8 @@ static inline uint8_t lv_color_brightness(lv_color_t color) /*Usage LV_COLOR_HEX3(0x16C) which means LV_COLOR_HEX(0x1166CC)*/ #define LV_COLOR_HEX3(c) LV_COLOR_MAKE((uint8_t) (((c >> 4) & 0xF0) | ((c >> 8) & 0xF)), \ - (uint8_t) ((uint32_t)(c & 0xF0) | ((c & 0xF0) >> 4)), \ - (uint8_t) ((uint32_t)(c & 0xF) | ((c & 0xF) << 4))) + (uint8_t) ((uint32_t)(c & 0xF0) | ((c & 0xF0) >> 4)), \ + (uint8_t) ((uint32_t)(c & 0xF) | ((c & 0xF) << 4))) static inline lv_color_t lv_color_hex(uint32_t c){ return LV_COLOR_HEX(c);