mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-19 16:46:30 +08:00
Fix a compile error with icc
No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -1056,7 +1056,7 @@ split_point_start: // At split points actual search starts from here
|
|||||||
|
|
||||||
if (abs(ttValue) < VALUE_KNOWN_WIN)
|
if (abs(ttValue) < VALUE_KNOWN_WIN)
|
||||||
{
|
{
|
||||||
Value b = ttValue - depth;
|
Value b = ttValue - int(depth);
|
||||||
ss->excludedMove = move;
|
ss->excludedMove = move;
|
||||||
ss->skipNullMove = true;
|
ss->skipNullMove = true;
|
||||||
Value v = search<NonPV>(pos, ss, b - 1, b, depth / 2, ply);
|
Value v = search<NonPV>(pos, ss, b - 1, b, depth / 2, ply);
|
||||||
|
|||||||
Reference in New Issue
Block a user