aboutsummaryrefslogtreecommitdiff
path: root/src/fen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/fen.cpp')
-rw-r--r--src/fen.cpp3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/fen.cpp b/src/fen.cpp
index 21ea778..7597143 100644
--- a/src/fen.cpp
+++ b/src/fen.cpp
@@ -1,7 +1,6 @@
#include "fen.hpp"
#include "board.hpp"
#include <cctype>
-#include <cstdio>
#include <cstdlib>
#include <print>
#include <string>
@@ -27,8 +26,6 @@ void setBoardFen(std::string fen, Game *b) {
parserState state = POSITION;
for (uint i = 0; i < fen.length(); i++) {
- std::printf("state: %d\n", state);
- std::printf("doing: %c\n", fen[i]);
if (fen[i] == ' ') {
if (state == POSITION) {
state = TURN;