Browse Source

remove reference to panic hook

pull/137/head
Andrea Ciliberti 1 year ago
parent
commit
1f72bfd9d8
  1. 3
      ctru-rs/examples/hello-world.rs

3
ctru-rs/examples/hello-world.rs

@ -6,9 +6,6 @@ use ctru::prelude::*;
use std::io::BufWriter; use std::io::BufWriter;
fn main() { 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. // Setup Graphics, Controller Inputs, Application runtime.
// These is standard setup any app would need. // These is standard setup any app would need.
let gfx = Gfx::new().expect("Couldn't obtain GFX controller"); let gfx = Gfx::new().expect("Couldn't obtain GFX controller");

Loading…
Cancel
Save