diff --git a/src/main.rs b/src/main.rs index 96dfe51..fef60f7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -11,13 +11,13 @@ pub(crate) struct App { pub(crate) scale: u8, } impl App { - pub(crate) fn new() -> anyhow::Result { + pub(crate) fn new() -> Self { loop {} } } fn main() { - let mut app = App::new().unwrap(); + let mut app = App::new(); app.sf_egui .do_frame(|ctx| { do_debug_ui(ctx, &mut app.game, &mut app.scale);