Speed up slow printing somewhat.
authorEric S. Raymond <esr@thyrsus.com>
Mon, 7 Feb 2005 20:40:37 +0000 (20:40 +0000)
committerEric S. Raymond <esr@thyrsus.com>
Mon, 7 Feb 2005 20:40:37 +0000 (20:40 +0000)
io.c

diff --git a/io.c b/io.c
index 8ea9d16b5a75e386ac1c4a5c9068c6d5ed510fd9..04fc9799245dc29f5fdc27c95e107952eba29c01 100644 (file)
--- 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);