Skip to content

Commit

Permalink
コンパイルエラー対策
Browse files Browse the repository at this point in the history
  • Loading branch information
ai5 committed Nov 13, 2017
1 parent aa5b0f4 commit ee3a7fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/tt.hpp
Expand Up @@ -45,7 +45,7 @@ class TTEntry {
Move move() const { return static_cast<Move>(move16_); }
Score score() const { return static_cast<Score>(score16_); }
Score evalScore() const { return static_cast<Score>(eval16_); }
Depth depth() const { return static_cast<Depth>(depth8_ * OnePly); }
Depth depth() const { return static_cast<Depth>(depth8_ * (int)OnePly); }
Bound bound() const { return static_cast<Bound>(genBound8_ & 0x3); }
u8 generation() const { return genBound8_ & 0xfc; }

Expand Down

0 comments on commit ee3a7fb

Please sign in to comment.