]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
Oops. Adjust delay by 10x.
authormycroft <mycroft@NetBSD.org>
Sat, 29 Apr 1995 01:20:00 +0000 (01:20 +0000)
committermycroft <mycroft@NetBSD.org>
Sat, 29 Apr 1995 01:20:00 +0000 (01:20 +0000)
hack/hack.termcap.c

index 217dcd50000d82aa1e26712d84b360b67baa9171..f1314a0e68e2dd36ac29a51cdeac90c237c13529 100644 (file)
@@ -3,7 +3,7 @@
  */
 
 #ifndef lint
-static char rcsid[] = "$NetBSD: hack.termcap.c,v 1.5 1995/04/29 01:08:51 mycroft Exp $";
+static char rcsid[] = "$NetBSD: hack.termcap.c,v 1.6 1995/04/29 01:20:00 mycroft Exp $";
 #endif /* not lint */
 
 #include <stdio.h>
@@ -251,7 +251,7 @@ delay_output() {
        else if(ospeed > 0) if(CM) {
                /* delay by sending cm(here) an appropriate number of times */
                register int cmlen = strlen(tgoto(CM, curx-1, cury-1));
-               register int i = (ospeed + (10 * cmlen)) / (20 * cmlen);
+               register int i = (ospeed + (100 * cmlen)) / (200 * cmlen);
 
                while(i > 0) {
                        cmov(curx, cury);