diff options
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); |