projects
/
xboard.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
d6897c9
)
Fix pieceToCharTable of Falcon Chess
author
H.G.Muller
<hgm@hgm-xboard.(none)>
Sat, 4 Oct 2014 19:52:51 +0000 (21:52 +0200)
committer
H.G.Muller
<hgm@hgm-xboard.(none)>
Wed, 8 Oct 2014 16:38:11 +0000 (18:38 +0200)
This variant was using the Falcon piece, but defining ID F for the
unused Lance instead.
backend.c
patch
|
blob
|
history
diff --git
a/backend.c
b/backend.c
index
329901e
..
d23ddfb
100644
(file)
--- a/
backend.c
+++ b/
backend.c
@@
-6107,7
+6107,7
@@
InitPosition (int redraw)
case VariantFalcon:
pieces = FalconArray;
gameInfo.boardWidth = 10;
- SetCharTable(pieceToChar, "PNBRQ.............FKpnbrq.............fk");
+ SetCharTable(pieceToChar, "PNBRQ............FKpnbrq............fk");
break;
case VariantXiangqi:
pieces = XiangqiArray;