From 338efa6815b8f5ecb5f58ead863d639efaf2595d Mon Sep 17 00:00:00 2001 From: AnnaSnoeijs Date: Fri, 6 Jun 2025 21:31:59 +0200 Subject: [PATCH] Fixed silly misalignment --- ui_ncurses.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui_ncurses.c b/ui_ncurses.c index ea2268b..f49e89d 100644 --- a/ui_ncurses.c +++ b/ui_ncurses.c @@ -139,7 +139,7 @@ void updateBoard( switch( move ){ case PUT: 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.column[ column ] & 1 << ( height - 1 ) ? "1" : "0" );