summaryrefslogtreecommitdiffstats
path: root/source/y/bsd-games/patches/0005-rain-Update-default-delay.-Closes-579062.patch
blob: d38da7644aaa928779175f4e6a128babb669cabe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
From: Tobias Quathamer <toddy@debian.org>
Date: Thu, 16 Feb 2012 11:26:53 +0100
Subject: rain: Update default delay. Closes: #579062

---
 rain/rain.6 | 2 +-
 rain/rain.c | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/rain/rain.6 b/rain/rain.6
index 9fb0f0e..c6515e9 100644
--- a/rain/rain.6
+++ b/rain/rain.6
@@ -49,6 +49,6 @@ baud 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 delay is 120.
 .Sh AUTHOR
 .An Eric P. Scott
diff --git a/rain/rain.c b/rain/rain.c
index e388f46..63e6276 100644
--- a/rain/rain.c
+++ b/rain/rain.c
@@ -70,7 +70,7 @@ main(int argc, char **argv)
 {
 	int x, y, j;
 	long cols, lines;
-	unsigned int delay = 0;
+	unsigned int delay = 120;
 	unsigned long val = 0;
 	int ch;
 	char *ep;