diff options
author | ache <ache@FreeBSD.org> | 1997-09-24 23:15:00 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-09-24 23:15:00 +0000 |
commit | 9cacac2173b58e200f71bd35ec985a27ea56591e (patch) | |
tree | 293508a5b7a53c58eec129dff67f2d8b28a75d1e /games | |
parent | d820189bdbaba51c10f58c86966ab442b163920a (diff) | |
download | FreeBSD-src-9cacac2173b58e200f71bd35ec985a27ea56591e.zip FreeBSD-src-9cacac2173b58e200f71bd35ec985a27ea56591e.tar.gz |
Oops, miss one rand() lcation...
Diffstat (limited to 'games')
-rw-r--r-- | games/atc/update.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/atc/update.c b/games/atc/update.c index 79bc601..5a83bbc 100644 --- a/games/atc/update.c +++ b/games/atc/update.c @@ -208,7 +208,7 @@ update() * Otherwise, prop jobs show up *on* entrance. Remember that * we don't update props on odd updates. */ - if ((rand() % sp->newplane_time) == 0) + if ((random() % sp->newplane_time) == 0) addplane(); #ifdef BSD |