From 1d1b28c294143f7a918db7a646b5564674616e44 Mon Sep 17 00:00:00 2001 From: tslil Date: Fri, 7 May 2021 22:19:31 -0400 Subject: quick hach --- include/negamax.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/negamax.c') diff --git a/include/negamax.c b/include/negamax.c index a970b83..e83d43b 100644 --- a/include/negamax.c +++ b/include/negamax.c @@ -40,7 +40,7 @@ static float negamax(const uint8_t cur_depth, const uint8_t init_depth, void negamax_init(const uint8_t new_board_size) { board_size = new_board_size; - action_list_init(); + action_list_init(new_board_size); zobrist_init(); tt_init(); } -- cgit v1.3.1