From e1f6b356f97edb611f07a9601f2d78d03e96c1c0 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 7 Feb 2005 20:40:37 +0000 Subject: [PATCH] Speed up slow printing somewhat. --- io.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/io.c b/io.c index 8ea9d16..04fc979 100644 --- a/io.c +++ b/io.c @@ -169,7 +169,7 @@ void prouts(char *fmt, ...) va_end(ap); skip(1); for (s = buf; *s; s++) { - delay(500); + delay(200); if (game.options & OPTION_CURSES) { waddch(curwnd, *s); wrefresh(curwnd); -- 2.31.1