1
0
Fork 0

Change inline to static inline

This commit is contained in:
Fred Sundvik 2017-04-22 19:49:41 +03:00
parent 574ca7f59c
commit f912c74fe7
2 changed files with 2 additions and 2 deletions

View file

@ -32,7 +32,7 @@ SOFTWARE.
#define LCD_SAT(color) ((color >> 8) & 0xFF)
#define LCD_INT(color) (color & 0xFF)
inline uint32_t change_lcd_color_intensity(uint32_t color, uint8_t new_intensity) {
static inline uint32_t change_lcd_color_intensity(uint32_t color, uint8_t new_intensity) {
return (color & 0xFFFFFF00) | new_intensity;
}