summaryrefslogtreecommitdiffstats
path: root/tetris/tetris.c
diff options
context:
space:
mode:
Diffstat (limited to 'tetris/tetris.c')
-rw-r--r--tetris/tetris.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tetris/tetris.c b/tetris/tetris.c
index 63090dbe..0b08ddab 100644
--- a/tetris/tetris.c
+++ b/tetris/tetris.c
@@ -1,4 +1,4 @@
-/* $NetBSD: tetris.c,v 1.3 1997/10/12 02:03:48 lukem Exp $ */
+/* $NetBSD: tetris.c,v 1.4 1998/08/10 02:25:45 perry Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -102,7 +102,7 @@ elide()
for (j = B_COLS - 2; *p++ != 0;) {
if (--j <= 0) {
/* this row is to be elided */
- bzero(&board[base], B_COLS - 2);
+ memset(&board[base], 0, B_COLS - 2);
scr_update();
tsleep();
while (--base != 0)