diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-12-11 04:07:58 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-12-11 04:07:58 +0100 |
commit | be5ca3208891a8d45cbb7f9c25905f46332572a0 (patch) | |
tree | 04d89404a2aecb26f0dc2299bffdfba4f5eb8df3 /bench | |
parent | eaa6c76bd92e292ac59dcfa0a7aa70cd1e2f50fb (diff) |
w
Diffstat (limited to 'bench')
-rw-r--r-- | bench/dijkstra.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bench/dijkstra.cpp b/bench/dijkstra.cpp index 66300721..37e562fe 100644 --- a/bench/dijkstra.cpp +++ b/bench/dijkstra.cpp @@ -24,7 +24,7 @@ void Dijkstra(benchmark::State& state) constexpr auto wpos = global_coords{wch, wt}; auto& ch = w[wch]; - auto metal2 = tile_image_proto{loader.tile_atlas("metal2", {2, 2}, pass_mode::blocked), 0}; + auto metal2 = wall_image_proto{loader.wall_atlas("concrete1", false), 0}; for (int16_t j = wcy - 1; j <= wcy + 1; j++) for (int16_t i = wcx - 1; i <= wcx + 1; i++) |