mirror of
https://github.com/peterosterlund2/droidfish.git
synced 2025-12-08 15:12:40 +01:00
CuckooChess: Fix bug in UCI option printout.
Also update UCI_EngineAbout to point to the correct URL.
This commit is contained in:
@@ -368,12 +368,13 @@ public class EngineControl {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static void printOptions(PrintStream os) {
|
static void printOptions(PrintStream os) {
|
||||||
os.print("option name Hash type spin default 16 min 1 max 2048%n");
|
os.println("option name Hash type spin default 16 min 1 max 2048");
|
||||||
os.print("option name OwnBook type check default false%n");
|
os.println("option name OwnBook type check default false");
|
||||||
os.print("option name Ponder type check default true%n");
|
os.println("option name Ponder type check default true");
|
||||||
os.print("option name UCI_AnalyseMode type check default false%n");
|
os.println("option name UCI_AnalyseMode type check default false");
|
||||||
os.printf("option name UCI_EngineAbout type string default %s by Peter Osterlund, see http://web.comhem.se/petero2home/javachess/index.html%n",
|
|
||||||
ComputerPlayer.engineName);
|
os.printf("option name UCI_EngineAbout type string default %s by Peter Osterlund, see %s%n",
|
||||||
|
ComputerPlayer.engineName, "http://hem.bredband.net/petero2b/javachess/index.html");
|
||||||
os.print("option name Strength type spin default 1000 min 0 max 1000\n");
|
os.print("option name Strength type spin default 1000 min 0 max 1000\n");
|
||||||
|
|
||||||
for (String pName : Parameters.instance().getParamNames()) {
|
for (String pName : Parameters.instance().getParamNames()) {
|
||||||
|
|||||||
Reference in New Issue
Block a user