Add an allow for the clippy bug

This commit is contained in:
Gwilym Kuiper 2022-03-18 22:01:02 +00:00
parent 7ae565b2c3
commit ccdb0e4921

View file

@ -9,6 +9,7 @@ impl Palette16 {
Palette16 { colours }
}
#[allow(clippy::only_used_in_recursion)]
pub fn update_colour(&mut self, index: usize, colour: u16) {
self.colours[index] = colour;
}