diff options
author | Griffin Smith <root@gws.fyi> | 2019-07-14T16·12-0400 |
---|---|---|
committer | Griffin Smith <root@gws.fyi> | 2019-07-14T16·12-0400 |
commit | 67d18b486c6376c7637b3494722ddf1eb525288c (patch) | |
tree | a2c7c415e685a00ca005df9ff643c162f772d9a6 /src/main.rs | |
parent | 405dbffe376b05af31dc57f027658c70b4fb9634 (diff) |
Factor out static_cfg from static init of messages
Factor out a macro for static references to data parsed from config files at compile-time.
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/src/main.rs b/src/main.rs index 8d7222106c52..e09563b16cc7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -25,9 +25,10 @@ mod game; #[macro_use] mod types; mod entities; +#[macro_use] +mod util; mod messages; mod settings; -mod util; use clap::App; use game::Game; @@ -49,13 +50,9 @@ fn init( h: u16, ) { panic::set_hook(if settings.logging.print_backtrace { - Box::new(|info| { - (error!("{}\n{:#?}", info, Backtrace::new())) - }) + Box::new(|info| (error!("{}\n{:#?}", info, Backtrace::new()))) } else { - Box::new(|info| { - (error!("{}\n{:#?}", info, Backtrace::new())) - }) + Box::new(|info| (error!("{}\n{:#?}", info, Backtrace::new()))) }); let game = Game::new(settings, stdout, stdin, w, h); |