diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-02-12 04:08:56 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-02-12 04:08:56 +0000 |
commit | 5d3f7faacac9b67fd57dbe6d02a13c890a84d563 (patch) | |
tree | 5d416981f1533f3c6e004b7eeb37b560e61a00be /games | |
parent | c8c7420e1a471a2ac48e522c7f576dbbc7050a14 (diff) |
kill old mips compiler hack; simonb@netbsd
Diffstat (limited to 'games')
-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 } /* |