src/chess/pgn.c

changeset 175
e0e061cf4829
parent 173
e541b6002933
--- a/src/chess/pgn.c	Fri Aug 14 13:52:27 2026 +0200
+++ b/src/chess/pgn.c	Mon Aug 17 12:01:19 2026 +0200
@@ -179,11 +179,8 @@
         }
         if (c == '1' || c == '0') {
             c = *(pgndata++);
-            // TODO: #842 - allow games to be continued if possible
             if (c == '-') {
                 if (!gamestate->checkmate) {
-                    // TODO: maybe we should not parse this here;
-                    //       there is an unused result string from the STR
                     c = *(pgndata++);
                     if (c == '1') {
                         gamestate->wresign = true;

mercurial