Show total number of games in progress below the list, useful if there are

more than fits on the screen.



git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@263 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
Jilles Tjoelker 2004-03-01 21:17:05 +00:00
parent ff19ea96cc
commit b3fb5538e8
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
1.4.4 (????/??/??)
* Show total number of games in progress below the list, useful if
there are more than fits on the screen.
1.4.3 (2004/02/28)
* Make ttyplay use the 'strip' value it remembered from last view.
* Don't fail if client-supplied window size seems incorrect.

View File

@ -337,6 +337,8 @@ inprogressmenu ()
(time (&ctime) - games[i + offset]->idle_time) % 60);
}
if (len > 0)
mvprintw (21, 1, "(%d-%d of %d)", offset + 1, offset + i, len);
mvaddstr (23, 1,
"Watch which game? (any key refreshes, 'q' quits, '>'/'<' for more/less) => ");
refresh ();