From 70b3e2664ba91921d94dfc35a6361d5a72bdc8c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com> Date: Mon, 20 Feb 2023 17:58:26 +0000 Subject: [PATCH] fix: ran clippy --- src/ppu.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ppu.rs b/src/ppu.rs index 5556740e..443d36cc 100644 --- a/src/ppu.rs +++ b/src/ppu.rs @@ -65,7 +65,7 @@ impl PaletteInfo { pub fn new(name: &str, colors: Palette) -> Self { Self { name: String::from(name), - colors: colors + colors } } -- GitLab