Skip to content

Commit

Permalink
Bench: 19673290
Browse files Browse the repository at this point in the history
  • Loading branch information
TerjeKir committed Oct 19, 2023
1 parent 2efd0f4 commit 2e9312c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/search.c
Original file line number Diff line number Diff line change
Expand Up @@ -561,9 +561,9 @@ static int AlphaBeta(Thread *thread, Stack *ss, int alpha, int beta, Depth depth
}

// Remember attempted moves to adjust their history scores
if (quiet && quietCount < 32)
if (quiet && moveCount < 32)
quiets[quietCount++] = move;
else if (!quiet && noisyCount < 32)
else if (!quiet && moveCount < 32)
noisys[noisyCount++] = move;
}

Expand Down

0 comments on commit 2e9312c

Please sign in to comment.