dulman@pixar.UUCP (01/25/87)
I noticed that the version of othello that was posted ended the game when one of two players would be forced to pass, which should be done only when both players are forced to pass. To fix, just change line 372 in othello.c as follows: was 372 if (xpass || opass) break; should be 372 if (xpass && opass) break; ------------------------------------------------------------------------- ucbvax!pixar!dulman