From 4aab1e0b77754b8906d1ede79fd96f93ccd69ef0 Mon Sep 17 00:00:00 2001 From: mycroft Date: Sat, 29 Apr 1995 01:20:00 +0000 Subject: [PATCH] Oops. Adjust delay by 10x. --- hack/hack.termcap.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hack/hack.termcap.c b/hack/hack.termcap.c index 217dcd50..f1314a0e 100644 --- a/hack/hack.termcap.c +++ b/hack/hack.termcap.c @@ -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 @@ -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); -- 2.47.1