diff options
| author | tslil clingman <> | 2020-01-27 22:16:59 -0800 |
|---|---|---|
| committer | tslil clingman <> | 2020-01-27 22:16:59 -0800 |
| commit | 38200848953b1d8d7ba083752c2621603842b54e (patch) | |
| tree | 9e13f26df343d472c040ac6678a9836c5ba11eb7 /src/gui.rs | |
| parent | 87c2d3319effd4d6be83875bdb455be9077c0c1c (diff) | |
fix ptn issues
Diffstat (limited to 'src/gui.rs')
| -rw-r--r-- | src/gui.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -204,7 +204,7 @@ impl BoardGUI { for i in 0..height { let piece = &stack[i]; self.draw_stone(win, i + 1 == height, &piece.player, &piece.stone); - if tall && i + 2 == carry_capacity { + if tall && i + 1 == height - carry_capacity { win.attrset(Attribute::Normal); win.addch(')'); } |
