diff --git a/src/apple2/platA2.c b/src/apple2/platA2.c index a5fc04f..c433faa 100644 --- a/src/apple2/platA2.c +++ b/src/apple2/platA2.c @@ -215,7 +215,7 @@ void plat_DrawSquare(char position) if(piece) { rop = blackWhite ? ROP_INV : ROP_CPY; - inv = blackWhite ^ (piece & PIECE_WHITE) != 0; + inv = blackWhite ^ !((piece & PIECE_WHITE) != 0); } else {