mirror of
				https://github.com/ArthurSonzogni/FTXUI.git
				synced 2025-11-04 13:38:14 +08:00 
			
		
		
		
	Fix compilation error on Windows for Color::Print
This commit is contained in:
		@@ -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_;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user