From a8b00bbed390838eab52fd035ebe3bd192422990 Mon Sep 17 00:00:00 2001 From: Andrea Ciliberti Date: Wed, 12 Jan 2022 07:55:51 +0100 Subject: [PATCH] Removed backtrace console --- ctru-rs/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/ctru-rs/src/lib.rs b/ctru-rs/src/lib.rs index 99b0b15..c2c8243 100644 --- a/ctru-rs/src/lib.rs +++ b/ctru-rs/src/lib.rs @@ -14,8 +14,6 @@ pub fn init() { // Panic Hook setup let default_hook = std::panic::take_hook(); let new_hook = Box::new(move |info: &PanicInfo| { - let _bt_console = console::Console::default(); - println!("\x1b[1;31m\n--------------------------------------------------"); default_hook(info); println!("\nPress SELECT to exit the software");