From 7be95e7bcd38b506afbb2e8a0c59cf2f5ded4f3a Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Sun, 27 Feb 2022 19:50:06 +0100 Subject: [PATCH] Debug quit command --- src/UCI.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/UCI.cpp b/src/UCI.cpp index 7318f81..ebb8eb5 100644 --- a/src/UCI.cpp +++ b/src/UCI.cpp @@ -237,7 +237,9 @@ void UCI::debug(bool d) { } } void UCI::ponderhit() { Command("ponderhit"); } -void UCI::quit() { Command("quit"); } +void UCI::quit() { + p->Write(cmd + "\n"); // Note that we should no do a sync! +} void UCI::ucinewgame() { Command("ucinewgame"); } void UCI::position(std::string fen, std::string moves) { position(fen + " moves " + moves);