From e5e820575894e31cd4da0c45a7f460fc47bcc9d3 Mon Sep 17 00:00:00 2001 From: Loic Guegan Date: Sun, 27 Feb 2022 19:51:48 +0100 Subject: [PATCH] Debug quit() command --- src/UCI.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/UCI.cpp b/src/UCI.cpp index ebb8eb5..502a42d 100644 --- a/src/UCI.cpp +++ b/src/UCI.cpp @@ -238,7 +238,8 @@ void UCI::debug(bool d) { } void UCI::ponderhit() { Command("ponderhit"); } void UCI::quit() { - p->Write(cmd + "\n"); // Note that we should no do a sync! + // Note that calling Command() will fail (because of Sync()) + p->Write("quit\n"); } void UCI::ucinewgame() { Command("ucinewgame"); } void UCI::position(std::string fen, std::string moves) {