mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 13:17:44 +00:00
Post-merge fixes.
This commit is contained in:
+2
-2
@@ -25,7 +25,7 @@
|
||||
#include <mutex>
|
||||
#include <optional>
|
||||
|
||||
namespace Tools::Stats
|
||||
namespace Stockfish::Tools::Stats
|
||||
{
|
||||
struct StatisticGathererBase
|
||||
{
|
||||
@@ -398,7 +398,7 @@ namespace Tools::Stats
|
||||
m_castling += 1;
|
||||
else if (type_of(move) == PROMOTION)
|
||||
m_promotion += 1;
|
||||
else if (type_of(move) == ENPASSANT)
|
||||
else if (type_of(move) == EN_PASSANT)
|
||||
m_enpassant += 1;
|
||||
else if (type_of(move) == NORMAL)
|
||||
m_normal += 1;
|
||||
|
||||
Reference in New Issue
Block a user