From fdab4a3e6f5f6b9f7f6f2fbfd55f8ebe1c257a41 Mon Sep 17 00:00:00 2001 From: xokz <106196742+xokz@users.noreply.github.com> Date: Mon, 23 Oct 2023 17:28:22 -0400 Subject: [PATCH] Update bitmap4.rs --- agb/src/display/bitmap4.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/agb/src/display/bitmap4.rs b/agb/src/display/bitmap4.rs index 02284a29..297090c9 100644 --- a/agb/src/display/bitmap4.rs +++ b/agb/src/display/bitmap4.rs @@ -89,7 +89,6 @@ impl Bitmap4<'_> { DISPLAY_CONTROL.set(swapped); } - /// Draws 2-pixel wide point on the non-current page at (x, y) coordinates with colour /// index whose colour is specified in the background palette. Panics if (x, /// y) is out of the bounds of the screen. @@ -130,7 +129,7 @@ impl Bitmap4<'_> { let c = u16::from(colour); - for x in 0..(WIDTH/2) as usize { + for x in 0..(WIDTH / 2) as usize { for y in 0..(HEIGHT as usize) { addr.set(x, y, c << 8 | c); } @@ -140,7 +139,6 @@ impl Bitmap4<'_> { /// Fills non-current page with color. pub fn clear(&mut self, colour: u8) { let display = DISPLAY_CONTROL.get(); - // get other page let page = if display & GraphicsSettings::PAGE_SELECT.bits() != 0 { Page::Front