diff options
Diffstat (limited to 'match.h')
-rw-r--r-- | match.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -32,7 +32,7 @@ struct leg { struct match { struct player *players; int n_players, size_players; - int active_player; + int starting_player, active_player; struct leg **legs; }; @@ -51,7 +51,7 @@ void match_add_player(struct match *m, enum player_type type, char *name, int match_next_player(struct match *m); int match_prev_player(struct match *m); -int match_last_player_to_throw(struct match *m); +int match_prev_throw_player(struct match *m); int match_winning_player(struct match *m); bool is_points_valid(int pts, int rem); |