From 4de466659dadbce3d9a493df5e024e2433a0e3b4 Mon Sep 17 00:00:00 2001 From: Mario Kilies Date: Thu, 27 Jan 2011 22:55:42 +0100 Subject: Switched from using uint8_t to player_id_t. --- src/ui.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/ui.c') diff --git a/src/ui.c b/src/ui.c index e081186..e6c0d63 100644 --- a/src/ui.c +++ b/src/ui.c @@ -216,7 +216,7 @@ void ui_display_wnd_stack_points(const table_stacks_t *ts, const bool highlight, * @param[in] highlighted_player The player to highlight * @param[in] score The players score */ -void ui_display_wnd_current_state(const player_list_t *pl, const uint8_t num_players, const bool highlight, const uint8_t highlighted_player, const uint32_t score) +void ui_display_wnd_current_state(const player_list_t *pl, const uint8_t num_players, const bool highlight, const player_id_t highlighted_player, const uint32_t score) { assert(pl != NULL); uint8_t pos = 0; @@ -339,7 +339,7 @@ void ui_display_wnd_hand_cards(const hand_t *h, const bool highlight, const uint /** * Displays the final scores window and highlights the player. */ -void ui_display_wnd_final_scores(const player_list_t *pl, const uint8_t num_players, const uint8_t highlighted_player) +void ui_display_wnd_final_scores(const player_list_t *pl, const uint8_t num_players, const player_id_t highlighted_player) { uint8_t row = 4; uint8_t place = 1; -- cgit v1.2.3