diff options
author | eug-vs <eugene@eug-vs.xyz> | 2022-09-13 23:26:34 +0300 |
---|---|---|
committer | eug-vs <eugene@eug-vs.xyz> | 2022-09-13 23:29:12 +0300 |
commit | b8bb4d08ef489bc81e9c00ae43d19c3795e22072 (patch) | |
tree | d8bdd3b6bf0ff594aa1e72c0cc07d292334e7015 /src/board.h | |
parent | 7a4d16e5ebd45b15b0c4925894c25a81c2e135c6 (diff) | |
download | j1chess-b8bb4d08ef489bc81e9c00ae43d19c3795e22072.tar.gz |
chore: setup primitive testing framework
Diffstat (limited to 'src/board.h')
-rw-r--r-- | src/board.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/board.h b/src/board.h index 6cde670..052e104 100644 --- a/src/board.h +++ b/src/board.h @@ -19,7 +19,7 @@ typedef struct { BYTE en_passant_square; } Board; -const char* pieces[] = { +static const char* pieces[] = { "♟︎", "♙", "♞", "♘", "♝", "♗", |