move_do_alt: use &state (as move_do)

This commit is contained in:
2024-06-17 07:37:22 +02:00
parent 2fbad1319e
commit e61e1518f4
2 changed files with 12 additions and 8 deletions

View File

@@ -19,7 +19,8 @@
pos_t *move_do(pos_t *pos, const move_t move, state_t *state);
pos_t *move_undo(pos_t *pos, const move_t move, const state_t *state);
pos_t *move_do_alt(pos_t *pos, const move_t move);//, state_t *state);
pos_t *move_undo_alt(pos_t *pos, const move_t move);//, const state_t *state);
/* new version testing */
pos_t *move_do_alt(pos_t *pos, const move_t move, state_t *state);
pos_t *move_undo_alt(pos_t *pos, const move_t move, const state_t *state);
#endif /* MOVE_DO_H */