From 1f72bfd9d8b97291fd1d4489934895803eaf1930 Mon Sep 17 00:00:00 2001 From: Andrea Ciliberti Date: Wed, 22 Nov 2023 20:32:15 +0100 Subject: [PATCH] remove reference to panic hook --- ctru-rs/examples/hello-world.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/ctru-rs/examples/hello-world.rs b/ctru-rs/examples/hello-world.rs index cab15f3..348f96d 100644 --- a/ctru-rs/examples/hello-world.rs +++ b/ctru-rs/examples/hello-world.rs @@ -6,9 +6,6 @@ use ctru::prelude::*; use std::io::BufWriter; fn main() { - // Setup the custom panic handler in case any errors arise. - // Thanks to it the user will get promptly notified of any panics. - // Setup Graphics, Controller Inputs, Application runtime. // These is standard setup any app would need. let gfx = Gfx::new().expect("Couldn't obtain GFX controller");