]> git.sesse.net Git - stockfish/blobdiff - src/movepick.h
Retire badCaptures[] array in MovePicker
[stockfish] / src / movepick.h
index 4a4610566c711615aa7f39a27631b5cedae18365..1a652d6fd69b44c7ce118a9ff11d07cacf6407b2 100644 (file)
@@ -65,8 +65,8 @@ private:
   MoveStack ttMoves[2], killers[2];
   int badCaptureThreshold, phase;
   const uint8_t* phasePtr;
-  MoveStack *curMove, *lastMove, *lastGoodNonCapture, *lastBadCapture;
-  MoveStack moves[256], badCaptures[64];
+  MoveStack *curMove, *lastMove, *lastGoodNonCapture, *badCaptures;
+  MoveStack moves[256];
 };