summaryrefslogtreecommitdiff
path: root/game/src
diff options
context:
space:
mode:
Diffstat (limited to 'game/src')
-rw-r--r--game/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/game/src/main.rs b/game/src/main.rs
index c13fc20..22203c3 100644
--- a/game/src/main.rs
+++ b/game/src/main.rs
@@ -5,7 +5,7 @@ fn main() -> Result<()> {
// Load the window
let mut window = Window::new(720, 480, "game")?;
// Initial game state
- let dungeon = Dungeon::default();
+ let dungeon = Dungeon::new();
// Main game loop
while window.is_open() {