summaryrefslogtreecommitdiff
path: root/src/world.c
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2024-11-25 17:40:24 +0100
committerAldrik Ramaekers <aldrikboy@gmail.com>2024-11-25 17:40:24 +0100
commit384e4dd24d232708c118432504fa8223b7ef60fe (patch)
treedbdd49c1312ec18e618c53a61240f8668dc08f58 /src/world.c
parente96c8910ff9e9c17b0c708d18b0efe018dd8c978 (diff)
working on it
Diffstat (limited to 'src/world.c')
-rw-r--r--src/world.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/world.c b/src/world.c
index fb917b3..bcff4e8 100644
--- a/src/world.c
+++ b/src/world.c
@@ -1408,7 +1408,7 @@ world_update_result world_render(platform_window* window, world* world)
color line_clr = COLOR_CONNECTION_BETWEEN_LOCATION_ACCESSIBLE;
if (!source->is_accessible) line_clr = COLOR_CONNECTION_BETWEEN_LOCATION_INACCESSIBLE;
- renderer->render_line(source->map_position_x, source->map_position_y, destination->map_position_x, destination->map_position_y, 1, line_clr);
+ renderer->render_line(source->map_position_x, source->map_position_y, destination->map_position_x, destination->map_position_y, 2, line_clr);
}
}