From c5d3042bbfc5f687ff95bd537806e44bad83b925 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Thu, 15 Mar 2012 20:41:15 -0400 Subject: [PATCH] Delay Increase - Increased delay to 0.05s. - Added Sam Stuck to AUTHORS, by way of thanks. --- AUTHORS | 1 + src/A3.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 5d9c1e005..82512c59f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -68,6 +68,7 @@ The following submitted code, packages or analysis, and deserve special thanks: Michal Vyskocil Steve Rader Luke Macken + Sam Stuck Thanks to the following, who submitted detailed bug reports and excellent suggestions: diff --git a/src/A3.cpp b/src/A3.cpp index a6aaa9846..5681efe24 100644 --- a/src/A3.cpp +++ b/src/A3.cpp @@ -280,7 +280,7 @@ bool A3::is_command ( void A3::append_stdin () { // Delay, to give it a chance to buffer the input. - delay (0.01); + delay (0.05); // Use 'select' to determine whether there is any std::cin content buffered // before trying to read it, to prevent blocking.