X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmaterial.cpp;h=be2cc5942890b2d972adbac8eba349d2a1c033d6;hp=094a13df9156fb2910a4364716a9f67c76bc1d49;hb=3c07603dac03f0da20194097cf4eb1a396fea60d;hpb=c73f33f37e56048f4e137dd5e5118367eb072a05 diff --git a/src/material.cpp b/src/material.cpp index 094a13df..be2cc594 100644 --- a/src/material.cpp +++ b/src/material.cpp @@ -139,7 +139,7 @@ Entry* probe(const Position& pos) { // Let's look if we have a specialized evaluation function for this particular // material configuration. Firstly we look for a fixed configuration one, then // for a generic one if the previous search failed. - if (pos.this_thread()->endgames.probe(key, e->evaluationFunction)) + if (pos.this_thread()->endgames.probe(key, &e->evaluationFunction)) return e; if (is_KXK(pos)) @@ -158,7 +158,7 @@ Entry* probe(const Position& pos) { // configuration. Is there a suitable specialized scaling function? EndgameBase* sf; - if (pos.this_thread()->endgames.probe(key, sf)) + if (pos.this_thread()->endgames.probe(key, &sf)) { e->scalingFunction[sf->strong_side()] = sf; // Only strong color assigned return e;