Skip to content
Snippets Groups Projects
Commit 0c75d845 authored by deuce's avatar deuce
Browse files

Make the first delay one second instead of 500ms.

This may fix up an odd 4-second inter-line delay that I noticed
in the last few commits.

I don't really know if that's new or not though.
parent 338c2710
No related branches found
No related tags found
No related merge requests found
......@@ -100,7 +100,7 @@ else while((msg=readln())!=undefined) { /* read from stdin */
if(delay < 2000)
delay*=2;
if (delay == 0)
delay = 500;
delay = 1000;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment