From 1786be5553d3ee2ee4353b107e579c15709fb1fa Mon Sep 17 00:00:00 2001 From: Tomasz Sobczyk Date: Mon, 5 Apr 2021 17:25:24 +0200 Subject: [PATCH] Minor fixes --- src/learn/stats.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/learn/stats.cpp b/src/learn/stats.cpp index d899090e..4ee123da 100644 --- a/src/learn/stats.cpp +++ b/src/learn/stats.cpp @@ -194,7 +194,7 @@ namespace Learner::Stats std::stringstream ss; for (int i = 0; i < SQUARE_NB; ++i) { - ss << std::setw(8) << m_squares[i] << ' '; + ss << std::setw(8) << m_squares[i ^ (int)SQ_A8] << ' '; if ((i + 1) % 8 == 0) ss << '\n'; }