From: Pasi Kallinen Date: Sun, 18 Oct 2009 17:21:56 +0000 (+0000) Subject: Give feedback when typing '/' in the watching menu. X-Git-Tag: v1.6.1-roc-dev~211 X-Git-Url: https://skyeroc.xyz/gitweb/?a=commitdiff_plain;h=6a703c4bf7bc49ad926454af71ea487fa27e497c;p=dgamelaunch Give feedback when typing '/' in the watching menu. git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@497 db0b04b0-f4d1-0310-9a6d-de3e77497b0e --- diff --git a/dgamelaunch.c b/dgamelaunch.c index 972a027..0f97f85 100644 --- a/dgamelaunch.c +++ b/dgamelaunch.c @@ -506,7 +506,9 @@ inprogressmenu (int gameid) int match = -1; char findname[21]; findname[0] = '\0'; - if ((mygetnstr(findname, 20, 0) == OK) && (strlen(findname) > 1)) { + mvprintw ((btm+2+top_banner_hei), 1, "Watch which player? => "); /* stupid... */ + mvaddstr ((btm+2+top_banner_hei), 1, "Watch which player? => "); + if ((mygetnstr(findname, 20, 1) == OK) && (strlen(findname) > 1)) { for (i = 0; i < len; i++) if (!strcmp(games[i]->name, findname)) { match = i;