summaryrefslogtreecommitdiff
path: root/pieces.h
diff options
context:
space:
mode:
Diffstat (limited to 'pieces.h')
-rw-r--r--pieces.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/pieces.h b/pieces.h
index 7c3ce6c..1a3e247 100644
--- a/pieces.h
+++ b/pieces.h
@@ -9,8 +9,8 @@ struct piece {
struct piece* randpiece();
void refillpieces(struct piece** hand, int nhand);
-bool placeable(char** map, struct piece* pc, int row, int col, int mapH, int mapW);
-void place(char** map, struct piece* pc, int row, int col);
+bool placeable(char* map, struct piece* pc, int row, int col, int mapH, int mapW);
+void place(char* map, struct piece* pc, int row, int col, int mapW);
void freepiece(struct piece* pc);
#endif