From 5ad93f2f24a2644dbb483531ea36e1e21997b6a6 Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sat, 14 Sep 2013 12:05:26 +0200 Subject: [PATCH] Fix analysis mode in non-XBoard build The declaration of the analyze_mode flag was in an XBOARD-controlled conditional code section. --- proce.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/proce.c b/proce.c index e94c973..cfeabe1 100644 --- a/proce.c +++ b/proce.c @@ -95,13 +95,13 @@ procedure( tree_t * restrict ptree ) char *start_pos, start_data[512]; // [HGM] undo: for remembering start position int move_list[1024], move_ptr; +char analyze_mode; #ifdef XBOARD #define IF(X) else if(!strcmp(command, X)) int myTime, hisTime, movesPerSession, inc, plyNr; char xboard_mode; -char analyze_mode; void xboard_to_CSA( tree_t * restrict ptree, char *in, char *out ) -- 1.7.0.4