Skip to content
Snippets Groups Projects
Unverified Commit bc206f85 authored by ArthurSonzogni's avatar ArthurSonzogni
Browse files

Fix compilation error on Windows for Color::Print

parent e9772a01
Branches
No related tags found
No related merge requests found
...@@ -202,7 +202,8 @@ Color Color::Interpolate(float t, const Color& a, const Color& b) { ...@@ -202,7 +202,8 @@ Color Color::Interpolate(float t, const Color& a, const Color& b) {
return; return;
} }
case ColorType::TrueColor: { case ColorType::TrueColor:
default: {
*red = color.red_; *red = color.red_;
*green = color.green_; *green = color.green_;
*blue = color.blue_; *blue = color.blue_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment