summaryrefslogtreecommitdiff
path: root/include/tak.h
diff options
context:
space:
mode:
authortslil <tslil@posteo.de>2020-12-31 20:07:21 -0500
committertslil <tslil@posteo.de>2026-08-28 19:37:41 +0100
commit567db82c8988932fe27e695e6dbf0e3e7b1c020a (patch)
tree5b778fdd203a5118b5b106140f059c6451664973 /include/tak.h
parent15e1d1008f05522570a9c80544b7ef24cf7c73df (diff)
Fixed road DFS errors
Diffstat (limited to 'include/tak.h')
-rw-r--r--include/tak.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/tak.h b/include/tak.h
index 0a6fcf1..6773bcd 100644
--- a/include/tak.h
+++ b/include/tak.h
@@ -26,10 +26,10 @@ uint8_t board_size;
data_t celldat[36];
colour_stack_t colours[36];
enum COLOUR current_colour;
-uint8_t white_flats, black_flats, white_caps, black_caps, turn;
+uint8_t white_flats, black_flats, white_caps, black_caps, ply;
void reset_state(const uint8_t new_board_size);
-void next_turn(void);
+void next_ply(void);
enum E_RESULT
try_place(const int8_t location, const enum COLOUR colour,