diff options
Diffstat (limited to 'games/tetris/tetris.c')
-rw-r--r-- | games/tetris/tetris.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/games/tetris/tetris.c b/games/tetris/tetris.c index d8274180879..45ad69516d9 100644 --- a/games/tetris/tetris.c +++ b/games/tetris/tetris.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tetris.c,v 1.4 1998/09/24 06:45:08 pjanzen Exp $ */ +/* $OpenBSD: tetris.c,v 1.5 1999/02/12 04:08:55 deraadt Exp $ */ /* $NetBSD: tetris.c,v 1.2 1995/04/22 07:42:47 cgd Exp $ */ /*- @@ -82,11 +82,7 @@ setup_board() p = board; for (i = B_SIZE; i; i--) -#ifndef mips *p++ = i <= (2 * B_COLS) || (i % B_COLS) < 2; -#else /* work around compiler bug */ - *p++ = i <= (2 * B_COLS) || (i % B_COLS) < 2 ? 1 : 0; -#endif } /* |