diff options
Diffstat (limited to 'board.c')
| -rw-r--r-- | board.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -41,8 +41,8 @@ void PrintBoard(char board[8][8]){ } attron(A_BOLD | COLOR_PAIR(4)); - if ( i == 1) printw(" BLACK "); - if ( i == 6) printw(" WHITE "); + if ( i == 1) printw(" HAND: %d ", hand); + if ( i == 6) printw(" POSITION: %d ", board[cursorPosX][cursorPosY]); attroff(A_BOLD | COLOR_PAIR(4)); printw("\n"); } |