diff options
author | 1999-02-12 04:08:55 +0000 | |
---|---|---|
committer | 1999-02-12 04:08:55 +0000 | |
commit | 86f07891924d32f535ba74e91fa46e42e1885fc7 (patch) | |
tree | 3520aaeb1dcb02137b4917eb691b8b6b62558025 | |
parent | parse "Return-Path:" headers in addition to UUCP style (diff) | |
download | wireguard-openbsd-86f07891924d32f535ba74e91fa46e42e1885fc7.tar.xz wireguard-openbsd-86f07891924d32f535ba74e91fa46e42e1885fc7.zip |
kill old mips compiler hack; simonb@netbsd
-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 } /* |