From: H.G. Muller Date: Thu, 16 Jul 2009 05:44:05 +0000 (-0700) Subject: higher number of engine options possible now X-Git-Tag: v4.4.0.beta1~2 X-Git-Url: http://winboard.nl/cgi-bin?p=xboard.git;a=commitdiff_plain;h=12019967e969325e53d0028c3dd1c2b11e0e3da9 higher number of engine options possible now I upped the number of options per engine from 50 to 100, and the average number of characters per option from 10 to 20. --- diff --git a/backend.h b/backend.h index a7b6074..a4a7acf 100644 --- a/backend.h +++ b/backend.h @@ -328,10 +328,10 @@ typedef struct _CPS { char egtFormats[MSG_SIZ]; /* [HGM] EGT: supported tablebase formats */ int bookSuspend; /* [HGM] book: go was deferred because of book hit */ int nrOptions; /* [HGM] options: remembered option="..." features */ -#define MAX_OPTIONS 50 +#define MAX_OPTIONS 100 Option option[MAX_OPTIONS]; int comboCnt; - char *comboList[10*MAX_OPTIONS]; + char *comboList[20*MAX_OPTIONS]; char *optionSettings; void *programLogo; /* [HGM] logo: bitmap of the logo */ char *fenOverride; /* [HGM} FRC: force FEN casling & ep fields by hand */