Fix compilation error on Windows for Color::Print

This commit is contained in:
ArthurSonzogni 2022-05-02 20:40:04 +02:00
parent e9772a0116
commit bc206f85da
No known key found for this signature in database
GPG Key ID: 41D98248C074CD6C

View File

@ -202,7 +202,8 @@ Color Color::Interpolate(float t, const Color& a, const Color& b) {
return;
}
case ColorType::TrueColor: {
case ColorType::TrueColor:
default: {
*red = color.red_;
*green = color.green_;
*blue = color.blue_;