X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fposition.cpp;h=0ed2fff4db4007737aeab8216ebc4a51e87d350f;hp=37b5c049cadd2152b6fdccaee44a87d0f57df315;hb=158014b39d69eaaf791d4913b98ffde5c4d7a874;hpb=9edc7d6958fd616daecb0ab9ae2aa92042b3d34a;ds=sidebyside diff --git a/src/position.cpp b/src/position.cpp index 37b5c049..0ed2fff4 100644 --- a/src/position.cpp +++ b/src/position.cpp @@ -918,8 +918,8 @@ void Position::do_move(Move m, StateInfo& newSt, const CheckInfo& ci, bool moveI } // Prefetch pawn and material hash tables - prefetch((char*)thisThread->pawnTable.entries[st->pawnKey]); - prefetch((char*)thisThread->materialTable.entries[st->materialKey]); + prefetch((char*)thisThread->pawnsTable[st->pawnKey]); + prefetch((char*)thisThread->materialTable[st->materialKey]); // Update incremental scores st->psqScore += psq_delta(piece, from, to);