mirror of
https://github.com/opelly27/Stockfish.git
synced 2026-05-20 10:57:43 +00:00
Fixed non UCI compliance
print `<empty>` and accept `<empty>` for UCI string options, accepting empty strings as well. Internally use empty strings (`""`). closes https://github.com/official-stockfish/Stockfish/pull/5474 No functional change
This commit is contained in:
committed by
Joost VandeVondele
parent
8d1e41458e
commit
42aae5fe8b
@@ -1344,7 +1344,7 @@ void Tablebases::init(const std::string& paths) {
|
||||
MaxCardinality = 0;
|
||||
TBFile::Paths = paths;
|
||||
|
||||
if (paths.empty() || paths == "<empty>")
|
||||
if (paths.empty())
|
||||
return;
|
||||
|
||||
// MapB1H1H7[] encodes a square below a1-h8 diagonal to 0..27
|
||||
|
||||
Reference in New Issue
Block a user