comment move_find_in_movelist() limitations

This commit is contained in:
2024-07-10 07:51:29 +02:00
parent f52454903c
commit f8bb5c06e5
2 changed files with 12 additions and 6 deletions

View File

@@ -76,7 +76,7 @@ static inline square_t move_to(move_t move)
return (move >> M_OFF_TO) & 077;
}
static inline square_t move_fromto(move_t move)
static inline move_t move_fromto(move_t move)
{
return move & 07777;
}