X-Git-Url: http://git.shiar.nl/netris.git/blobdiff_plain/406e72f6bc3be827e1202d817677e8af093231dc..bed729727d8fef3695e5252f17cfbbe8f2aca879:/client.c diff --git a/client.c b/client.c index 0137572..8f2b00b 100644 --- a/client.c +++ b/client.c @@ -44,7 +44,6 @@ static struct option options[] = { { "color", 2, 0, 'C' }, { "slowterm", 2, 0, 'S' }, { "keys", 1, 0, 'k' }, - { "rules", 0, 0, 'R' }, { "info", 0, 0, 'H' }, { "help", 0, 0, 'h' }, { 0, 0, 0, 0 } @@ -121,7 +120,6 @@ static void Usage(void) "\n" " -h, --help\t\tPrint this usage information\n" " -H, --info\t\tShow distribution and warranty information\n" - " -R, --rules\t\tShow game rules\n" "\n" " -S, --slowterm\tDisable inverse/bold/color for slow terminals\n" " -a, --ascii\t\tUse ascii characters\n" @@ -177,9 +175,6 @@ static void handle_arg(char tag, char *value) Header(); DistInfo(); exit(0); - case 'R': //rules - Rules(); - exit(0); case 'h': //help Usage(); exit(0); @@ -709,7 +704,7 @@ static void game_loop(void) } //new piece while (gameStatus == 2) { for (i = 1; i < MAX_SCREENS; i++) - if (Players[i].alive > 0 && PlayerDisp[i]) + if (Players[i].alive > 0 && window[i].shown) changed |= RefreshBoard(i); if (changed) { if (!paused) ShowTime(); @@ -794,7 +789,7 @@ int main(int argc, char **argv) // else handle_conffile(CONFIG_FILE); while ((ch = getopt_long( - argc, argv, "hHRk:c:n:oSCap:i:l:t:", options, NULL + argc, argv, "hHk:c:n:oSCap:i:l:t:", options, NULL )) != -1) handle_arg(ch, optarg); if (optind < argc) {