From db23dba7d44374a059507d0083b12a9a4e302cfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Magalh=C3=A3es?= <joamag@gmail.com> Date: Sun, 7 May 2023 09:49:20 +0100 Subject: [PATCH] fix: new format --- src/mmu.rs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/mmu.rs b/src/mmu.rs index 01cde3db..2b08fb74 100644 --- a/src/mmu.rs +++ b/src/mmu.rs @@ -103,11 +103,7 @@ pub struct Mmu { } impl Mmu { - pub fn new( - components: Components, - mode: GameBoyMode, - gbc: Rc<RefCell<GameBoyConfig>>, - ) -> Self { + pub fn new(components: Components, mode: GameBoyMode, gbc: Rc<RefCell<GameBoyConfig>>) -> Self { Self { ppu: components.ppu, apu: components.apu, -- GitLab