diff options
author | Frederick Yin <fkfd@fkfd.me> | 2022-06-01 15:37:28 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2022-06-01 15:37:28 +0800 |
commit | d191870068f89293353a67b164b4dbb3b3a71661 (patch) | |
tree | 5170bff59ba6d27bd4a0edee990e96074b5f67d5 /ui.c | |
parent | e31298da0ada6bfcbb6f71e3c27d9eb2825e7e27 (diff) |
Do not wrap piece at hand in rectangle
Diffstat (limited to 'ui.c')
-rw-r--r-- | ui.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -60,7 +60,6 @@ void printpieces(struct piece** hand, int y, int x, int nhand, int highlight) { continue; struct piece* pc = hand[i]; - printrect(y, x, pc->h + 2, pc->w + 2); printpiece(pc, y + 2, x + 3, (i == highlight ? 1 : 0)); x += 2 * pc->w + 8; |