diff options
-rw-r--r-- | play.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/play.c b/play.c index 37e1445..3e2811f 100644 --- a/play.c +++ b/play.c @@ -234,6 +234,15 @@ static const struct Game *menu(void) { attrset(A_NORMAL); mvaddstr(2 + 3 * i, 2, Games[i].desc); } + attrset(A_BOLD); + mvaddstr(2 + 3 * ARRAY_LEN(Games), 2, "Tip: "); + attrset(A_NORMAL); + addstr("You can select a game directly using "); + attrset(A_BOLD); + addstr("ssh -t play@ascii.town "); + addstr(Games[game].name); + attrset(A_NORMAL); + clrtoeol(); move(1 + 3 * game, 2); int ch = getch(); switch (ch) { |