Fixed silly misalignment
This commit is contained in:
parent
bf1ae99a9a
commit
338efa6815
1 changed files with 1 additions and 1 deletions
|
|
@ -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"
|
||||||
);
|
);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue