Upgrade version (#363)

This commit is contained in:
Arthur Sonzogni
2022-03-20 20:58:56 +01:00
committed by ArthurSonzogni
parent 1a3fcc1bd8
commit 548fa51b71
3 changed files with 7 additions and 4 deletions

View File

@@ -147,9 +147,9 @@ Color Color::HSV(uint8_t h, uint8_t s, uint8_t v) {
// static
Color Color::Interpolate(float t, const Color& a, const Color& b) {
float red;
float green;
float blue;
float red = 0.f;
float green = 0.f;
float blue = 0.f;
switch (a.type_) {
case ColorType::Palette1: {
if (t < 0.5)