From 12019967e969325e53d0028c3dd1c2b11e0e3da9 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Wed, 15 Jul 2009 22:44:05 -0700 Subject: [PATCH] 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. --- backend.h | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) 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 */ -- 1.7.0.4