Subject: tetris vs. gcc
To: None <port-pmax@netbsd.org>
From: Hubert Feyrer <feyrer@rfhs8012.fh-regensburg.de>
List: port-pmax
Date: 01/02/1999 15:53:13
I've just discovered the following in src/games/tetris/tetris.c (Rev.
1.5, line 83+):

#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

Can someone check if this is still needed with all the recent compiler
changes, and remove the conditional (if no longer needed)? Would be cool!
:)


 - Hubert

-- 
Hubert Feyrer <hubert.feyrer@rz.uni-regensburg.de>