mirror of
https://github.com/sockspls/badfish
synced 2025-07-11 19:49:14 +00:00
Fix a compile error with icc
No functional change. Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
4270aec558
commit
d372f2e39a
1 changed files with 1 additions and 1 deletions
|
@ -1056,7 +1056,7 @@ split_point_start: // At split points actual search starts from here
|
|||
|
||||
if (abs(ttValue) < VALUE_KNOWN_WIN)
|
||||
{
|
||||
Value b = ttValue - depth;
|
||||
Value b = ttValue - int(depth);
|
||||
ss->excludedMove = move;
|
||||
ss->skipNullMove = true;
|
||||
Value v = search<NonPV>(pos, ss, b - 1, b, depth / 2, ply);
|
||||
|
|
Loading…
Add table
Reference in a new issue