From 98e6d6d7e2e6da8a7e0512ce4619383511afe57f Mon Sep 17 00:00:00 2001 From: Jason Bou-Samra <154414066+bou-samra@users.noreply.github.com> Date: Tue, 5 Nov 2024 10:51:50 +1100 Subject: [PATCH] Update hiscore.c --- src/hiscore.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hiscore.c b/src/hiscore.c index 6fd6c35..1b0de0f 100644 --- a/src/hiscore.c +++ b/src/hiscore.c @@ -23,8 +23,8 @@ int total = 0x00; // smashed tiles int total_c = 0x00; // total count -int hscores1[8] = {1000, 780, 600, 500, 400, 300, 200, 100}; -char hscores[8][7+1] = {{"......."}, {"......."}, {"......."}, {"......."}, {"......."}, {"......."}, {"......."}, {"......."}}; // high score panel - scores +int hscores1[8] = {10000, 9000, 8000, 7000, 6000, 5000, 4000, 1}; +char hscores[8][7+1] = {{"..10000"}, {"...9000"}, {"...8000"}, {"...7000"}, {"...6000"}, {"...5000"}, {"...4000"}, {"......1"}}; // high score panel - scores char names[8][7+1] = {{"HULK "}, {"EARTH "}, {"BUSH "}, {"AXE "}, {"PERFECT"}, {"POWERS "}, {"TUGBOAT"}, {"DINO "}}; // high score panel - names char name_temp[7+1] = " ";