summaryrefslogtreecommitdiffstats
path: root/hack
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1995-04-29 01:20:00 +0000
committermycroft <mycroft@NetBSD.org>1995-04-29 01:20:00 +0000
commit4aab1e0b77754b8906d1ede79fd96f93ccd69ef0 (patch)
tree89be412c2c8ed18b3f3d299f5a39b4604c25e5c6 /hack
parent733fe45afd763538d189033ecb62bc93d8522e93 (diff)
downloadbsdgames-darwin-4aab1e0b77754b8906d1ede79fd96f93ccd69ef0.tar.gz
bsdgames-darwin-4aab1e0b77754b8906d1ede79fd96f93ccd69ef0.tar.zst
bsdgames-darwin-4aab1e0b77754b8906d1ede79fd96f93ccd69ef0.zip
Oops. Adjust delay by 10x.
Diffstat (limited to 'hack')
-rw-r--r--hack/hack.termcap.c4
1 files 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 <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);