From c8ff3b43591bcbdb0c9ef441df85203aada7a933 Mon Sep 17 00:00:00 2001 From: Gwilym Kuiper Date: Thu, 17 Nov 2022 21:10:56 +0000 Subject: [PATCH] blnd -> blend --- agb/src/display/window.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/agb/src/display/window.rs b/agb/src/display/window.rs index 7c11bdab..1f8e41b1 100644 --- a/agb/src/display/window.rs +++ b/agb/src/display/window.rs @@ -128,8 +128,8 @@ impl Window { /// Sets whether the blend is enabled inside of this window, must call /// [Windows::commit] for this change to be seen. #[inline(always)] - pub fn set_blend_enable(&mut self, blnd: bool) -> &mut Self { - self.set_bit(5, blnd); + pub fn set_blend_enable(&mut self, blend: bool) -> &mut Self { + self.set_bit(5, blend); self } @@ -204,8 +204,8 @@ impl MovableWindow { /// Sets whether the blend is enabled inside of this window, must call /// [Windows::commit] for this change to be seen. #[inline(always)] - pub fn set_blend_enable(&mut self, blnd: bool) -> &mut Self { - self.inner.set_blend_enable(blnd); + pub fn set_blend_enable(&mut self, blend: bool) -> &mut Self { + self.inner.set_blend_enable(blend); self } /// Sets whether the given background will be rendered inside this window,