diff --git a/ctru-rs/src/console.rs b/ctru-rs/src/console.rs index 322072e..78e8840 100644 --- a/ctru-rs/src/console.rs +++ b/ctru-rs/src/console.rs @@ -322,11 +322,6 @@ impl<'screen, S: Screen> Console<'screen, S> { _ => unreachable!(), } } - - /// Run a function with access to the underlying screen. - pub fn with_screen(&mut self, action: impl FnOnce(&mut RefMut<'_, S>)) { - action(&mut self.screen); - } } impl Swap for Console<'_, S> {