diff options
author | Daniel Jones <admin@danieljon.es> | 2020-04-25 21:45:53 +0930 |
---|---|---|
committer | Daniel Jones <admin@danieljon.es> | 2020-04-25 21:45:53 +0930 |
commit | 9ef2c081393f398b1d5f531e82b1522d39e169a7 (patch) | |
tree | 2b32528b9e9ad444f2dc6e039adcde3253ce6b49 | |
parent | 367e8508623f6328b32cdd71ad698fde9ab66157 (diff) | |
download | csweeper-9ef2c081393f398b1d5f531e82b1522d39e169a7.tar.gz csweeper-9ef2c081393f398b1d5f531e82b1522d39e169a7.zip |
redraw when toggling flag
-rw-r--r-- | ncsweeper.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ncsweeper.c b/ncsweeper.c index 3a45a14..9ba9d60 100644 --- a/ncsweeper.c +++ b/ncsweeper.c @@ -281,6 +281,7 @@ main(void) if (tile && tile->state & HIDDEN) { tile->state ^= FLAGGED; + draw(); } break; } |