summaryrefslogtreecommitdiffstats
path: root/tetris/tetris.h
diff options
context:
space:
mode:
Diffstat (limited to 'tetris/tetris.h')
-rw-r--r--tetris/tetris.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tetris/tetris.h b/tetris/tetris.h
index 7d18a2d1..8e1479f1 100644
--- a/tetris/tetris.h
+++ b/tetris/tetris.h
@@ -1,4 +1,4 @@
-/* $NetBSD: tetris.h,v 1.15 2016/03/03 21:38:55 nat Exp $ */
+/* $NetBSD: tetris.h,v 1.16 2020/07/21 02:42:05 nia Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -130,7 +130,7 @@ struct shape {
};
extern const struct shape shapes[];
-#define randshape() (&shapes[random() % 7])
+#define randshape() (&shapes[arc4random_uniform(7)])
extern const struct shape *nextshape;