From 2b8f493894e2da378c41b5fa504e2d22f191bf17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com> Date: Sun, 18 Jun 2023 23:19:56 +0100 Subject: [PATCH] fix: new format --- src/ppu.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ppu.rs b/src/ppu.rs index 559b56fa..9e20dffe 100644 --- a/src/ppu.rs +++ b/src/ppu.rs @@ -731,8 +731,8 @@ impl Ppu { // 0xFF6B — OCPD/OBPD (CGB only) 0xff6b => self.palettes_color[1][self.palette_address_obj as usize], // 0xFF6C — OPRI (CGB only) - - 0xff6c => { + 0xff6c => + { #[allow(clippy::bool_to_int_with_if)] if self.obj_priority { 0x01 -- GitLab