From ad78591b19524a9fb0c5274d80771f647d8ab0ba Mon Sep 17 00:00:00 2001 From: H.G. Muller Date: Sat, 20 Aug 2011 22:21:40 +0200 Subject: [PATCH] Fix ICS move-list header mistaken for null moves --- backend.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/backend.c b/backend.c index 26ebe3c..79614cc 100644 --- a/backend.c +++ b/backend.c @@ -8918,6 +8918,7 @@ ParseGameHistory(game) break; case WhiteDrop: case BlackDrop: + if(currentMoveString[0] == '@') continue; // no null moves in ICS mode! fromX = moveType == WhiteDrop ? (int) CharToPiece(ToUpper(currentMoveString[0])) : (int) CharToPiece(ToLower(currentMoveString[0])); -- 1.7.0.4