From b97d1cbc4ad29b917d95258bcd3d058eb46f57fb Mon Sep 17 00:00:00 2001 From: Brian Barto Date: Tue, 19 Apr 2016 18:36:29 -0400 Subject: [PATCH] Bump up the type speed a touch modified: src/nms.c --- src/nms.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nms.c b/src/nms.c index 9b90e30..7ba7184 100644 --- a/src/nms.c +++ b/src/nms.c @@ -115,7 +115,7 @@ void nmsexec(char *src) { } // Initially display the characters in the terminal with a 'type effect'. - ms = 5; // miliseconds, used for usleep() + ms = 4; // miliseconds, used for usleep() list_pointer = start; while (list_pointer != NULL && list_pointer->row <= termSizeRows) { mvaddch(list_pointer->row, list_pointer->col, list_pointer->mask);