summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README2
-rw-r--r--csweeper.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/README b/README
index c4f55a2..22dd72f 100644
--- a/README
+++ b/README
@@ -1 +1,3 @@
Simple grid-based minesweeper for the terminal in C
+
+program running: https://danieljon.es/posts/media/post111_1.png
diff --git a/csweeper.c b/csweeper.c
index 63fa3eb..735e1c5 100644
--- a/csweeper.c
+++ b/csweeper.c
@@ -275,7 +275,7 @@ drawboard()
if (neighbormines == '0')
neighbormines = ' ';
if (tile->state & FLAGGED)
- printf(" f ");
+ printf(" F ");
else if (tile->state & HIDDEN)
printf(" . ");
else