From 3a3c238cd849d90037ab875c03ebc5d55c3cf1be Mon Sep 17 00:00:00 2001 From: Schrottkatze Date: Wed, 18 Jun 2025 17:21:24 +0200 Subject: [PATCH] make console startup text less useless --- src/debug/console.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/debug/console.rs b/src/debug/console.rs index a1ceef4..a44529f 100644 --- a/src/debug/console.rs +++ b/src/debug/console.rs @@ -47,8 +47,10 @@ pub struct ConsoleLog(Vec, usize); impl ConsoleLog { fn new() -> Self { Self( - vec![ConsoleEvent::Output(String::from( - "Welcome to the dev console :3\n (i should probably put some proper info into this some time)", + vec![ConsoleEvent::Output(format!( + "Running {} ({})\nMeow!! :3", + env!("CARGO_PKG_NAME"), + env!("CARGO_PKG_VERSION") ))], 1, )