mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 10:40:00 +08:00
Fix compilation error on Windows for Color::Print
This commit is contained in:
parent
e9772a0116
commit
bc206f85da
@ -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_;
|
||||
|
Loading…
Reference in New Issue
Block a user