if (max_height+offset < len)
mvprintw ((btm+top_banner_hei), 1, "(%d-%d of %d)", offset + 1, offset + i, len);
else
- mvprintw ((btm+top_banner_hei), 1, "(end)");
+ mvprintw ((btm+top_banner_hei), 4, "(end)");
mvaddstr ((btm+2+top_banner_hei), 1, "Watch which game? ('?' for help) => ");
} else {
mvprintw(top_banner_hei,4,"Sorry, no games available for viewing.");
case '*':
if (len > 0) {
idx = random() % len;
+ selected = idx;
goto watchgame;
}
break;
if (match > -1) {
if (!strcmp(games[match]->ttyrec_fn + strlen (games[match]->ttyrec_fn) - 6, ".nhext")) break;
idx = match;
+ selected = idx;
goto watchgame;
}
}