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:
parent
ff19ea96cc
commit
b3fb5538e8
|
@ -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.
|
||||
|
|
|
@ -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 ();
|
||||
|
|
Loading…
Reference in New Issue