X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmovegen.cpp;h=1082ad016aab60bbe60c7a782113b38920e7efb5;hp=1f9c17a80a20188175eb445888ef627f7f1e919b;hb=67338e6f322b8f8ec0d897815e16a87937efc9b0;hpb=8300ab149cec54c2124898285bdc9308f78de4cd diff --git a/src/movegen.cpp b/src/movegen.cpp index 1f9c17a8..1082ad01 100644 --- a/src/movegen.cpp +++ b/src/movegen.cpp @@ -372,20 +372,20 @@ namespace { to = pop_1st_bit(&b); if (Type == MV_CAPTURE || Type == MV_EVASION) - (*mlist++).move = make_promotion_move(to - Delta, to, QUEEN); + (*mlist++).move = make_promotion(to - Delta, to, QUEEN); if (Type == MV_NON_CAPTURE || Type == MV_EVASION) { - (*mlist++).move = make_promotion_move(to - Delta, to, ROOK); - (*mlist++).move = make_promotion_move(to - Delta, to, BISHOP); - (*mlist++).move = make_promotion_move(to - Delta, to, KNIGHT); + (*mlist++).move = make_promotion(to - Delta, to, ROOK); + (*mlist++).move = make_promotion(to - Delta, to, BISHOP); + (*mlist++).move = make_promotion(to - Delta, to, KNIGHT); } // This is the only possible under promotion that can give a check // not already included in the queen-promotion. if ( Type == MV_CHECK && bit_is_set(pos.attacks_from(to), pos.king_square(Delta > 0 ? BLACK : WHITE))) - (*mlist++).move = make_promotion_move(to - Delta, to, KNIGHT); + (*mlist++).move = make_promotion(to - Delta, to, KNIGHT); else (void)pos; // Silence a warning under MSVC } return mlist; @@ -488,7 +488,7 @@ namespace { while (b1) { to = pop_1st_bit(&b1); - (*mlist++).move = make_enpassant_move(to, pos.ep_square()); + (*mlist++).move = make_enpassant(to, pos.ep_square()); } } return mlist; @@ -535,7 +535,7 @@ namespace { return mlist; } - (*mlist++).move = make_castle_move(kfrom, rfrom); + (*mlist++).move = make_castle(kfrom, rfrom); return mlist; }