diff options
| author | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-26 23:40:35 +0200 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi.dcr@tutanota.com> | 2022-06-26 23:42:48 +0200 |
| commit | 4305732e0a09a9e8ae8da6c076c4f65fa0c9c280 (patch) | |
| tree | 405528702799a024647ee6ff03e02237d20a7485 | |
| parent | 7196c6a0cc89ea3683e67ee34b90dbadb69aebfe (diff) | |
human_player.c: reset deselected instances
| -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 { |
