summaryrefslogtreecommitdiff
path: root/src/pieces.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pieces.h')
-rw-r--r--src/pieces.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/pieces.h b/src/pieces.h
index 2289f2c..5689bb7 100644
--- a/src/pieces.h
+++ b/src/pieces.h
@@ -2,6 +2,8 @@
#define BLACK 0b0001
#define NO_COLOR 0b1110
+char* COLORS[] = { "white", "black" };
+
#define EMPTY 0b0000
#define VISUAL 0b0001
@@ -29,8 +31,8 @@ int rookMoves[] = { 16, 1, -1, -16, 0 };
int queenMoves[] = { 17, 16, 15, 1, -1, -15, -16, -17, 0 };
int knightMoves[] = { 33, 31, 18, 14, -33, -31, -18, -14, 0 };
int kingMoves[] = { 17, 16, 15, 1, -1, -15, -16, -17, 0 };
-int pawnMoves[] = { 17, 16, 15, 0 };
-int blackPawnMoves[] = { -17, -16, -15, 0 };
+int pawnMoves[] = { 32, 17, 16, 15, 0 };
+int blackPawnMoves[] = { -32, -17, -16, -15, 0 };
#define FILE_MASK 0b1111