summaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-06-06 03:19:45 -0400
committerLLLL Colonq <llll@colonq>2026-06-06 03:19:45 -0400
commit92bba055a46e28266c067d37f1a9274858f20704 (patch)
treebcf9b6ce054229fd4ca9de9e63066eb671165940 /src/main.rs
parentd3bd791297d6aaa7abaf613aafbec99a7bb17823 (diff)
Update
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
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)
)
}