diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/player/src/human_player.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/player/src/human_player.c b/src/player/src/human_player.c index 221146d..ffc4fd4 100644 --- a/src/player/src/human_player.c +++ b/src/player/src/human_player.c @@ -59,6 +59,9 @@ static bool select_units(struct human_player *const h, const short x, { sel = h->sel; h->n_sel = 1; + + for (size_t i = 1; i < sizeof h->sel / sizeof *h->sel; i++) + h->sel[i].d.u = NULL; } else { @@ -123,6 +126,9 @@ static bool select_buildings(struct human_player *const h, const short x, { sel = h->sel; h->n_sel = 1; + + for (size_t i = 1; i < sizeof h->sel / sizeof *h->sel; i++) + h->sel[i].d.b = NULL; } else { @@ -176,6 +182,9 @@ static bool select_resources(struct human_player *const h, const short x, { sel = h->sel; h->n_sel = 1; + + for (size_t i = 1; i < sizeof h->sel / sizeof *h->sel; i++) + h->sel[i].d.r = NULL; } else { |
