From 4e315b3bb26a7763223026f6573e02663733fb54 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Sat, 3 Oct 2020 21:28:13 +0900 Subject: [PATCH] Set the window title of the game --- src/main.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 03c8506..1d51933 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,7 +7,11 @@ use ggez::{event, ContextBuilder}; fn main() { let (mut ctx, mut event_loop) = ContextBuilder::new("ld47_stuckinaloop", "Stephen Seo") - .window_setup(WindowSetup::default().vsync(true)) + .window_setup( + WindowSetup::default() + .title("LudumDare 47 - Stuck In A Loop - Escape") + .vsync(true), + ) .build() .unwrap(); -- 2.49.0