Skip to content

Commit

Permalink
Set UCI_ShowWDL by default to false
Browse files Browse the repository at this point in the history
UCI_ShowWDL might not be shown by GUIs that don't know the option,
but crash on the WDL output, effectively making it hard for users to
turn it off and run the engine. This sets it by default to false.

fixes official-stockfish#2787

closes official-stockfish#2788

No functional change.
  • Loading branch information
vondele authored and noobpwnftw committed Aug 15, 2020
1 parent b9a0345 commit 84b2b0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ucioption.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ void init(OptionsMap& o) {
o["UCI_AnalyseMode"] << Option(false);
o["UCI_LimitStrength"] << Option(false);
o["UCI_Elo"] << Option(1350, 1350, 2850);
o["UCI_ShowWDL"] << Option(true);
o["UCI_ShowWDL"] << Option(false);
o["SyzygyPath"] << Option("<empty>", on_tb_path);
o["SyzygyProbeDepth"] << Option(1, 1, 100);
o["Syzygy50MoveRule"] << Option(true);
Expand Down

0 comments on commit 84b2b0c

Please sign in to comment.