Fixed silly misalignment

This commit is contained in:
AnnaSnoeijs 2025-06-06 21:31:59 +02:00
parent bf1ae99a9a
commit 338efa6815

View file

@ -139,7 +139,7 @@ void updateBoard(
switch( move ){ switch( move ){
case PUT: case PUT:
mvaddstr( mvaddstr(
BOARD_Y + BOARD_DY * ( BOARD_HEIGHT - height - 1 ), BOARD_Y + BOARD_DY * ( BOARD_HEIGHT - height + 1 ),
BOARD_X + 1 + BOARD_DX * ( column + 1 ), BOARD_X + 1 + BOARD_DX * ( column + 1 ),
board.column[ column ] & 1 << ( height - 1 ) ? "1" : "0" board.column[ column ] & 1 << ( height - 1 ) ? "1" : "0"
); );