aboutsummaryrefslogtreecommitdiff
path: root/src/board/fen.cpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-08-02 13:14:55 +0200
committerAdam <adammegarules1@gmail.com>2026-08-02 13:14:55 +0200
commit9d2a95f566c5cb31d92af969d052b665ccbea9be (patch)
treee6ceb7c1ba9c938f5aced88a667fa96d2533db31 /src/board/fen.cpp
parentf948514c5337961444f555374523902ae94dd00f (diff)
caching kign position
Diffstat (limited to 'src/board/fen.cpp')
-rw-r--r--src/board/fen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/board/fen.cpp b/src/board/fen.cpp
index a7e65eb..fc52bfe 100644
--- a/src/board/fen.cpp
+++ b/src/board/fen.cpp
@@ -154,5 +154,5 @@ void setBoardFen(const std::string fen, Game *g) {
break;
}
g->enPassant = enpassant;
- UpdateBitboards(g);
+ UpdateHelpers(g);
}