From 3a9499276a08d988da5382a453ee089129ffabed Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Tue, 10 Apr 2012 15:53:47 +0200 Subject: [PATCH] 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. --- backend.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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) { -- 1.7.0.4