]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
worms(6): Use a reasonable default delay for non-1980s terminals.
authornia <nia@NetBSD.org>
Wed, 14 Oct 2020 07:32:53 +0000 (07:32 +0000)
committernia <nia@NetBSD.org>
Wed, 14 Oct 2020 07:32:53 +0000 (07:32 +0000)
This is still fast, but not unreasonably fast.

worms/worms.6
worms/worms.c

index 940ec606f1adc39a716d7ef65ec75e2022b10ac0..2ef966048bc8e0f9328df43197239e1a546a23a8 100644 (file)
@@ -1,4 +1,4 @@
-.\"    $NetBSD: worms.6,v 1.15 2012/08/12 17:30:03 wiz Exp $
+.\"    $NetBSD: worms.6,v 1.16 2020/10/14 07:32:53 nia Exp $
 .\"
 .\" Copyright (c) 1989, 1993
 .\"    The Regents of the University of California.  All rights reserved.
@@ -29,7 +29,7 @@
 .\"
 .\"    @(#)worms.6     8.1 (Berkeley) 5/31/93
 .\"
-.Dd July 31, 2012
+.Dd October 14, 2020
 .Dt WORMS 6
 .Os
 .Sh NAME
@@ -56,7 +56,7 @@ Specifies
 as a delay, in milliseconds, between each update.
 This is useful for fast terminals.
 Reasonable values are around 20-200;
-the default is 0.
+the default is 20.
 .It Fl f
 Makes a
 .Dq field
index b69ec125c1691ba6023c3690d36b559fd63e3934..7b63d7bf40195bae62d4b7a613d6fb3f2de09567 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: worms.c,v 1.22 2012/06/19 05:46:09 dholland Exp $      */
+/*     $NetBSD: worms.c,v 1.23 2020/10/14 07:32:53 nia Exp $   */
 
 /*
  * Copyright (c) 1980, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\
 #if 0
 static char sccsid[] = "@(#)worms.c    8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: worms.c,v 1.22 2012/06/19 05:46:09 dholland Exp $");
+__RCSID("$NetBSD: worms.c,v 1.23 2020/10/14 07:32:53 nia Exp $");
 #endif
 #endif /* not lint */
 
@@ -194,7 +194,7 @@ main(int argc, char *argv[])
        short **ref;
        const char *field;
        char *mp;
-       unsigned int delay = 0;
+       unsigned int delay = 20000;
 
        mp = NULL;
        length = 16;