Fix incorrect use of UCI::Option of type "combo".

This commit is contained in:
Tomasz Sobczyk
2020-09-11 13:06:53 +02:00
committed by nodchip
parent 98f24570ab
commit 3388c22d71
2 changed files with 2 additions and 2 deletions

View File

@@ -86,7 +86,7 @@ void init(OptionsMap& o) {
o["SyzygyProbeDepth"] << Option(1, 1, 100);
o["Syzygy50MoveRule"] << Option(true);
o["SyzygyProbeLimit"] << Option(7, 0, 7);
#ifdef EVAL_LEARN
#if defined(EVAL_LEARN)
o["Use NNUE"] << Option("true var true var false var pure", "true", on_use_NNUE);
#else
o["Use NNUE"] << Option("true var true var false", "true", on_use_NNUE);