From: Eric S. Raymond Date: Mon, 7 Feb 2005 20:40:37 +0000 (+0000) Subject: Speed up slow printing somewhat. X-Git-Tag: 2.0~329 X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=commitdiff_plain;h=e1f6b356f97edb611f07a9601f2d78d03e96c1c0 Speed up slow printing somewhat. --- 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);