Compare commits

...

2 Commits

Author SHA1 Message Date
StewBC
6237a02a0e Fixed case 2024-01-11 12:05:38 -08:00
StewBC
5ec7fe9753 Fix for XOR and logical operation 2024-01-11 11:52:52 -08:00
2 changed files with 2 additions and 2 deletions

View File

@ -12,5 +12,5 @@ REMOVES += $(TAP)
.PHONY: tap
tap: $(TAP)
$(TAP): cc65-chess.atmos
$(TAP): cc65-Chess.atmos
$(call CP, $< $@)

View File

@ -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
{