From: H.G. Muller Date: Sat, 20 Aug 2011 20:21:40 +0000 (+0200) Subject: Fix ICS move-list header mistaken for null moves X-Git-Url: http://winboard.nl/cgi-bin?a=commitdiff_plain;h=ad78591b19524a9fb0c5274d80771f647d8ab0ba;hp=f29ff21f23c2a22fc55e14ba48c53d704c22289d;p=xboard.git Fix ICS move-list header mistaken for null moves --- 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]));