add hist_link, hist_push: remove 'move' parameter

This commit is contained in:
2024-06-29 11:35:33 +02:00
parent a44483e36c
commit 8c94c6beb1
3 changed files with 59 additions and 15 deletions

View File

@@ -433,7 +433,7 @@ void pos_print(const pos_t *pos)
board_print(pos->board);
printf("fen: %s\n", pos2fen(pos, str));
printf("last move:%s ", move_to_str(str, pos->move, 0));
printf("key:%lx", pos->key);
printf("key:%lx\n", pos->key);
printf("checkers:%s ", pos_checkers2str(pos, str, sizeof(str)));
printf("pinners: %s ", pos_pinners2str(pos, str, sizeof(str)));
printf("blockers: %s\n", pos_blockers2str(pos, str, sizeof(str)));