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, 3 insertions, 1 deletions
diff --git a/tetris/tetris.c b/tetris/tetris.c
index 57ff4e5c..1f5f68b4 100644
--- a/tetris/tetris.c
+++ b/tetris/tetris.c
@@ -1,4 +1,4 @@
-/* $NetBSD: tetris.c,v 1.30 2015/06/13 04:53:13 dholland Exp $ */
+/* $NetBSD: tetris.c,v 1.31 2015/11/06 19:53:37 christos Exp $ */
/*-
* Copyright (c) 1992, 1993
@@ -116,6 +116,8 @@ elide(void)
tsleep();
while (--base != 0)
board[base + B_COLS] = board[base];
+ /* don't forget to clear 0th row */
+ memset(&board[1], 0, B_COLS - 2);
scr_update();
tsleep();
break;