rain(6) is useless. but still it should provide sane defaults
ihmo. ok?
Index: rain.6
===================================================================
RCS file: /cvs/OpenBSD/src/games/rain/rain.6,v
retrieving revision 1.14
diff -u -r1.14 rain.6
--- rain.6 31 May 2007 19:19:18 -0000 1.14
+++ rain.6 21 Mar 2011 06:52:36 -0000
@@ -47,7 +47,7 @@
or the
.Fl d
option must be used to specify a delay, in milliseconds, between each update.
-A reasonable delay is 120; the default is 0.
+The default is 120.
.Pp
As with any
.Xr curses 3
Index: rain.c
===================================================================
RCS file: /cvs/OpenBSD/src/games/rain/rain.c,v
retrieving revision 1.15
diff -u -r1.15 rain.c
--- rain.c 27 Oct 2009 23:59:26 -0000 1.15
+++ rain.c 21 Mar 2011 06:52:36 -0000
@@ -52,7 +52,7 @@
{
int x, y, j;
long tcols, tlines;
- u_int delay = 0;
+ u_int delay = 120000;
int ch;
int xpos[5], ypos[5];
--
Matthieu Herrb