]> git.sesse.net Git - stockfish/blobdiff - src/ucioption.cpp
Remove an useless comparison in futility pruning
[stockfish] / src / ucioption.cpp
index 1504f64ec41c8d88c3bfe40283a61907bb2af1bd..ab76997ff0e7a101ca742b9116b8a398caef6852 100644 (file)
@@ -38,7 +38,7 @@
 //// Variables
 ////
 
-bool Chess960 = false;
+bool Chess960;
 
 
 ////
@@ -59,9 +59,9 @@ namespace {
 
     std::string name, defaultValue, currentValue;
     OptionType type;
+    size_t idx;
     int minValue, maxValue;
     ComboValues comboValues;
-    size_t idx;
 
     Option();
     Option(const char* defaultValue, OptionType = STRING);