From b089bc20865a98be2f42dac7f5d35deff5efb33a Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Sat, 8 Nov 2025 23:42:50 -0500 Subject: graphics: have window default to minimum size --- game/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'game') diff --git a/game/src/main.rs b/game/src/main.rs index 3764c6a..df94ea4 100644 --- a/game/src/main.rs +++ b/game/src/main.rs @@ -3,7 +3,7 @@ use graphics::*; fn main() -> Result<()> { // Load the window - let mut window = Window::new(720, 480, "game")?; + let mut window = Window::new_default()?; // Initial game state let mut dungeon = Dungeon::new(); -- cgit v1.2.3-freya