# HG changeset patch # User Mike Becker # Date 1784799455 -7200 # Node ID 231e5f07a657c8fe1dab94dd6eabfe8c0e02b95b # Parent f1b6a0388d8539fbc182bc2a227fe50271e8ffc1 fix incorrect move notation when disambiguating moves fixes #933 diff -r f1b6a0388d85 -r 231e5f07a657 src/chess/rules.c --- a/src/chess/rules.c Tue Jul 21 14:09:55 2026 +0200 +++ b/src/chess/rules.c Thu Jul 23 11:37:35 2026 +0200 @@ -141,7 +141,7 @@ } /* ambiguous file, name row */ if (ambfiles > 1) { - string[idx++] = filechr(move->fromrow); + string[idx++] = rowchr(move->fromrow); } } }