Skip to content

Commit

Permalink
Fix wrong roadblock image on "empty storage" option
Browse files Browse the repository at this point in the history
  • Loading branch information
crudelios committed Feb 2, 2025
1 parent 32cb185 commit 218f66b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/window/building/distribution.c
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ static void draw_accept_none_button(int x, int y, int focused, affect_all_button
{
button_border_draw(x, y, 20, 20, focused ? 1 : 0);
if (state == ACCEPT_ALL) {
image_draw(assets_get_image_id("UI", "Allowed_Walker_Check"), x + 4, y + 4, COLOR_MASK_NONE, SCALE_NONE);
image_draw(assets_get_image_id("UI", "Selection_Checkmark"), x + 4, y + 4, COLOR_MASK_NONE, SCALE_NONE);
} else {
image_draw(assets_get_image_id("UI", "Denied_Walker_Checkmark"), x + 4, y + 4, COLOR_MASK_NONE, SCALE_NONE);
}
Expand Down

0 comments on commit 218f66b

Please sign in to comment.