From: H.G. Muller Date: Tue, 10 Apr 2012 13:53:47 +0000 (+0200) Subject: Fix auto-play X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=3a9499276a08d988da5382a453ee089129ffabed;hp=a5962cc6d5720104995759d853b24b71ae827e26;p=xboard.git Fix auto-play The 'narrow search' modification had broken auto-play, because all selected games were marked as matching position 0, so that they would all start in thr opening position. --- diff --git a/backend.c b/backend.c index 6185347..cc42334 100644 --- a/backend.c +++ b/backend.c @@ -12148,7 +12148,7 @@ LoadGame (FILE *f, int gameNumber, char *title, int useList) AnalyzeFileEvent(); } - if (!matchMode && pos >= 0) { + if (!matchMode && pos > 0) { ToNrEvent(pos); // [HGM] no autoplay if selected on position } else if (matchMode || appData.timeDelay == 0) {