From 93ed5e8a51bd45c927f159c336d8db5236ef1590 Mon Sep 17 00:00:00 2001 From: Ian C Date: Wed, 14 Jun 2023 10:39:29 +0100 Subject: Make zeroed percentage match the 4 digit format --- csol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- cgit v1.2.3