summaryrefslogtreecommitdiff
path: root/include/othello_board.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/othello_board.h')
-rw-r--r--include/othello_board.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/othello_board.h b/include/othello_board.h
index 99ad839..a8299fc 100644
--- a/include/othello_board.h
+++ b/include/othello_board.h
@@ -32,7 +32,7 @@ enum player_color **copy_board(enum player_color **board);
void free_board(enum player_color **board);
// Prints the current state of the board, including coordinates in the margins.
-void print_board(enum player_color **board);
+void print_board(enum player_color **board, struct move *highlighted_moves, size_t highlighted_moves_length);
void scm_print_board(SCM board);
// Returns the current board.