X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Ftt.h;h=31fc1fbce5f5a5801db869c86750028f2aa2c47e;hp=02913efe7f66f0bd1a162de084bdbf1b54cb4a38;hb=9e44a6dba9718b74a64656ae7801a62946c3b725;hpb=941f4e1643edbdf28118a47d0277747bb358d3ad diff --git a/src/tt.h b/src/tt.h index 02913efe..31fc1fbc 100644 --- a/src/tt.h +++ b/src/tt.h @@ -43,7 +43,7 @@ public: TTEntry(Key k, Value v, ValueType t, Depth d, Move m, int generation); Key key() const { return key_; } Depth depth() const { return Depth(depth_); } - Move move() const { return Move(data & 0x7FFFF); } + Move move() const { return Move(data & 0x1FFFF); } Value value() const { return Value(value_); } ValueType type() const { return ValueType((data >> 20) & 7); } int generation() const { return (data >> 23); }