diff options
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 3c8ed4f..8713914 100644 --- a/src/main.rs +++ b/src/main.rs @@ -5,7 +5,7 @@ mod room; pub fn main() -> teleia::Erm<()> { let room_path = std::env::args().nth(1).unwrap(); teleia::run("game", 640, 480, teleia::Options::FULLSCREEN_MOUSE, - |ctx| game::Game::new(ctx, &room_path) + |ctx, _st| game::Game::new(ctx, &room_path) ) } |
