This commit is contained in:
Lokathor 2021-04-10 09:13:05 -06:00
parent 12823a8b58
commit 6e6f4be709

View file

@ -14,6 +14,6 @@ impl Color {
let r = red as u16;
let g = green as u16;
let b = blue as u16;
Self(b << 10 | g << 15 | r)
Self(b << 10 | g << 5 | r)
}
}