diff options
author | Nick Brassel <nick@tzarc.org> | 2020-08-05 15:11:06 +1000 |
---|---|---|
committer | Drashna Jael're <drashna@live.com> | 2020-09-30 03:19:05 -0700 |
commit | 28947d5f54c22a57f6080332276b5dab29c76546 (patch) | |
tree | cda6dac806be93499df21cbfcfb17e6ae99d2971 /quantum/color.h | |
parent | 9d4cbcd81e0278786b3663a08d6a736fcbd705bf (diff) |
Add support for hsv->rgb conversion without using CIE curve. (#9856)
* Add support for hsv->rgb conversion without using CIE curve.
* Modify anavi/macropad8 to disable unicode (was unused), otherwise firmware size is too large.
Diffstat (limited to 'quantum/color.h')
-rw-r--r-- | quantum/color.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/quantum/color.h b/quantum/color.h index 8fe671b93d..44caa552fa 100644 --- a/quantum/color.h +++ b/quantum/color.h @@ -64,7 +64,7 @@ typedef struct PACKED { #endif RGB hsv_to_rgb(HSV hsv); - +RGB hsv_to_rgb_nocie(HSV hsv); #ifdef RGBW void convert_rgb_to_rgbw(LED_TYPE *led); #endif |