From 40de0760e954c4748ab1054fd7062ea62b236c7e Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Wed, 23 Nov 2016 15:13:40 +0100 Subject: [PATCH] Obey -firstFeatures option at startup The -firstFeatures, which are supposed to overrule features of the first engine, were ignored when this engine was loaded at startup. --- backend.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/backend.c b/backend.c index 776f751..b5eb581 100644 --- a/backend.c +++ b/backend.c @@ -1600,6 +1600,7 @@ InitBackEnd3 P((void)) char buf[MSG_SIZ]; int err, len; + ParseFeatures(appData.features[0], &first); if(!appData.icsActive && !appData.noChessProgram && !appData.matchMode && // mode involves only first engine !strcmp(appData.variant, "normal") && // no explicit variant request appData.NrRanks == -1 && appData.NrFiles == -1 && appData.holdingsSize == -1 && // no size overrides requested -- 1.7.0.4