From 0ed1802b1894214edc592195e9bf4ffb0a1c6d05 Mon Sep 17 00:00:00 2001 From: polsevev Date: Thu, 23 Nov 2023 20:52:26 +0100 Subject: [PATCH] Made a small change to headline --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 7fc6a10..c4553a7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -44,7 +44,7 @@ async fn main() { let mut centerX = screen_width()/2.0; - draw_text("Sorting!", centerX-170.0, screen_height()*0.1, 100.0, BLACK); + draw_text("Sorting! Made by Polsevev", centerX-170.0, screen_height()*0.1, 100.0, BLACK); draw_text(&get_fps().to_string(), centerX + 300., 30.0, 20.0, BLACK); root_ui().window(hash!(), Vec2::new(centerX - 150.0, 150.), Vec2::new(300., 45.), |ui|{ ui.input_text(hash!(), "Delay (ms)", &mut delayText);