From e9dd691627a2e41f66ca96dbc53b59ae96ab683c Mon Sep 17 00:00:00 2001 From: Dominic Date: Sun, 7 Jul 2024 18:48:58 +0200 Subject: [PATCH] adjust text --- src/game_over.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game_over.rs b/src/game_over.rs index 0e2f434..85bd921 100644 --- a/src/game_over.rs +++ b/src/game_over.rs @@ -31,7 +31,7 @@ pub fn draw(state: &State, _engine: &EngineContext<'_>) { ui.with_layout(Layout::top_down_justified(Align::Center), |ui| { ui.heading( RichText::new( - "The poor spirit lost all their energy and starve to death" + "The poor spirit lost all their energy and starved to death" ) .color(WHITE) .strong() @@ -43,7 +43,7 @@ pub fn draw(state: &State, _engine: &EngineContext<'_>) { .size(30.0) ); ui.label( - RichText::new("\n\n\npress enter for restart") + RichText::new("\n\n\npress enter to restart") .color(WHITE) .size(30.0) );