From f2df3f9a5a29d948968d080bdd0e927b2fa52c63 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Sat, 29 Apr 2023 16:20:24 +0900 Subject: [PATCH] Minor tweak to score --- src/world.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/world.rs b/src/world.rs index 71db0d5..ed0ac57 100644 --- a/src/world.rs +++ b/src/world.rs @@ -224,7 +224,7 @@ impl World { } crate::custom_text(self.str_buf, width, 160 - width as i32 * 8, 0); } else { - crate::text("9999999999", 160 - 10 * 8, 0); + crate::text("99999999999999", 160 - 10 * 8, 0); } } }