summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2023-06-14 10:39:29 +0100
committerIan C <ianc@noddybox.co.uk>2023-06-14 10:39:29 +0100
commit93ed5e8a51bd45c927f159c336d8db5236ef1590 (patch)
treef603c7c56e1847958924a20f89a4b651bfda5425
parentaf40beb9c7a24dcd787f30e04b9a5854c8fe9f73 (diff)
Make zeroed percentage match the 4 digit formatHEADmaster
-rw-r--r--csol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/csol.c b/csol.c
index b4528e6..4cb46f0 100644
--- a/csol.c
+++ b/csol.c
@@ -102,7 +102,7 @@ static const char *GetScore(int game)
if (score[game].played == 0)
{
- strcpy(buff, "0 played, 0 won, 0.00%");
+ strcpy(buff, "0 played, 0 won, 0.0000%");
}
else
{