This commit is contained in:
2021-05-18 20:17:12 +01:00
parent 4238ea033a
commit 6fe46a1085
2 changed files with 6 additions and 8 deletions

View File

@@ -17,11 +17,10 @@ impl From<&str> for Colour {
impl From<Vec<u8>> for Colour {
fn from(colours: Vec<u8>) -> Self {
const ZERO: u8 = 0;
Colour {
red: *colours.get(0).unwrap_or(&ZERO),
green: *colours.get(1).unwrap_or(&ZERO),
blue: *colours.get(2).unwrap_or(&ZERO),
red: *colours.get(0).unwrap_or(&0),
green: *colours.get(1).unwrap_or(&0),
blue: *colours.get(2).unwrap_or(&0),
}
}
}