X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/puzzles/blobdiff_plain/9b265feb3378c6f2b36a52dffabe8110e3c77566..83134cff82fffc60405f2b5515897ded96f2d958:/solo.c diff --git a/solo.c b/solo.c index 5b92bca..efd795b 100644 --- a/solo.c +++ b/solo.c @@ -2442,7 +2442,7 @@ static char *grid_text_format(int c, int r, digit *grid) for (x = 0; x < cr; x++) { int ch = grid[y * cr + x]; if (ch == 0) - ch = ' '; + ch = '.'; else if (ch <= 9) ch = '0' + ch; else