aboutsummaryrefslogtreecommitdiff
path: root/src/fen.cpp
diff options
context:
space:
mode:
authorAdam <adammegarules1@gmail.com>2026-07-27 20:14:54 +0200
committerAdam <adammegarules1@gmail.com>2026-07-27 20:14:54 +0200
commit51d27e1ab9058c9e0fafb399e22edf7b38470510 (patch)
treef0528298123fcb33eb426a5aa099afd2a8d00a90 /src/fen.cpp
parentf1ded0290393709d437c6e149861ceb91d241c64 (diff)
adding uci
Diffstat (limited to 'src/fen.cpp')
-rw-r--r--src/fen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fen.cpp b/src/fen.cpp
index fa8f289..21ea778 100644
--- a/src/fen.cpp
+++ b/src/fen.cpp
@@ -9,7 +9,7 @@
bool WHITE = true;
bool BLACK = false;
-void setBoardFen(std::string fen, Board *b) {
+void setBoardFen(std::string fen, Game *b) {
// example fen rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1
int file = 0;
int rank = 0;