From 5449be52c9120b4a78a433e954569ee6a62157ff Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Wed, 8 Jun 2011 17:24:41 +0200 Subject: [PATCH] Fix clock mode in tourney starting from -ncp mode When a tourney started from -ncp mode, which was allowed in MatchEvent, because the tourney loads its own engines anyway, the menu enablings and clockmode where not restored to their 'GNUMode' state. --- backend.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/backend.c b/backend.c index d04fd3d..9ba38f3 100644 --- a/backend.c +++ b/backend.c @@ -1550,6 +1550,8 @@ InitBackEnd3 P((void)) if(f = fopen(appData.tourneyFile, "r")) { ParseArgsFromFile(f); // make sure tourney parmeters re known fclose(f); + appData.clockMode = TRUE; + SetGNUMode(); } else appData.tourneyFile[0] = NULLCHAR; // for now ignore bad tourney file } MatchEvent(TRUE); -- 1.7.0.4