diff options
author | June McEnroe <june@causal.agency> | 2021-09-28 13:19:38 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-09-28 13:19:38 -0400 |
commit | 9c14b49b6d4016e05a141e5ba52c09b10bde35f7 (patch) | |
tree | a0eb01fe0f1a48565e4f45b174d6dd2fe5ff5878 /play.c | |
parent | Add mouse support to freecell (diff) | |
download | play-9c14b49b6d4016e05a141e5ba52c09b10bde35f7.tar.gz play-9c14b49b6d4016e05a141e5ba52c09b10bde35f7.zip |
Add news of freecell mouse support to menu
Diffstat (limited to '')
-rw-r--r-- | play.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/play.c b/play.c index 3e2811f..1e1ab51 100644 --- a/play.c +++ b/play.c @@ -235,7 +235,11 @@ static const struct Game *menu(void) { mvaddstr(2 + 3 * i, 2, Games[i].desc); } attrset(A_BOLD); - mvaddstr(2 + 3 * ARRAY_LEN(Games), 2, "Tip: "); + mvaddstr(2 + 3 * ARRAY_LEN(Games), 2, "News: "); + attrset(A_NORMAL); + addstr("FreeCell now supports mouse!"); + attrset(A_BOLD); + mvaddstr(4 + 3 * ARRAY_LEN(Games), 2, "Tip: "); attrset(A_NORMAL); addstr("You can select a game directly using "); attrset(A_BOLD); |