diff options
| author | Mario Kilies <MarioKilies@GMX.net> | 2011-01-27 22:55:42 +0100 |
|---|---|---|
| committer | Mario Kilies <MarioKilies@GMX.net> | 2011-01-27 22:55:42 +0100 |
| commit | 4de466659dadbce3d9a493df5e024e2433a0e3b4 (patch) | |
| tree | a188e79741947b2ae509507f5fdc351dbeaf1a2a /src/ui.c | |
| parent | efa6023ed7dfecd2a3fc49526cf0bab5ae967247 (diff) | |
Switched from using uint8_t to player_id_t.
Diffstat (limited to 'src/ui.c')
| -rw-r--r-- | src/ui.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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; |
