summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMr. Sam <samuel@yakubos.org>2026-07-20 23:01:43 +0100
committerMr. Sam <samuel@yakubos.org>2026-07-20 23:01:43 +0100
commitcbfd0186b99c800c5e06569910dcf300ff7db59c (patch)
tree5cfad648e7bbfdfcc28c9892acaeef2d3854fa79
parent2824d08a2ad63c572b7b993ceed8843378d4bf20 (diff)
Never mind, colour hints were betterHEADmaster
-rw-r--r--board.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board.c b/board.c
index b14f225..8c0d75b 100644
--- a/board.c
+++ b/board.c
@@ -41,8 +41,8 @@ void PrintBoard(char board[8][8]){
}
attron(A_BOLD | COLOR_PAIR(4));
- if ( i == 1) printw(" HAND: %d ", hand);
- if ( i == 6) printw(" POSITION: %d ", board[cursorPosX][cursorPosY]);
+ if ( i == 1) printw(" BLACK ");
+ if ( i == 6) printw(" WHITE ");
attroff(A_BOLD | COLOR_PAIR(4));
printw("\n");
}