From: Stephen Seo Date: Sat, 3 Oct 2020 12:28:13 +0000 (+0900) Subject: Set the window title of the game X-Git-Url: https://git.seodisparate.com/tbm-server-edit-hover.png?a=commitdiff_plain;h=4e315b3bb26a7763223026f6573e02663733fb54;p=LudumDare47_StuckInALoop Set the window title of the game --- 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();