summaryrefslogtreecommitdiffstats
path: root/board.c
diff options
context:
space:
mode:
Diffstat (limited to 'board.c')
-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");
}