summaryrefslogtreecommitdiff
path: root/csol.c
diff options
context:
space:
mode:
Diffstat (limited to 'csol.c')
-rw-r--r--csol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/csol.c b/csol.c
index c57d8af..b4528e6 100644
--- a/csol.c
+++ b/csol.c
@@ -106,7 +106,7 @@ static const char *GetScore(int game)
}
else
{
- snprintf(buff, sizeof buff, "%lu played, %lu won, %.2f%%",
+ snprintf(buff, sizeof buff, "%lu played, %lu won, %.4f%%",
score[game].played,
score[game].won,
(double)score[game].won / (double)score[game].played * 100.0);