From 342efb9e14261e4612f27ef7937ffa5a49c0e7d2 Mon Sep 17 00:00:00 2001 From: dmwever <56411717+dmwever@users.noreply.github.com> Date: Thu, 23 Jan 2025 16:16:33 -0600 Subject: [PATCH] use vector of optional cost_stamp_t's --- libopenage/pathfinding/cost_field.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libopenage/pathfinding/cost_field.h b/libopenage/pathfinding/cost_field.h index decff980df..3750ed0680 100644 --- a/libopenage/pathfinding/cost_field.h +++ b/libopenage/pathfinding/cost_field.h @@ -160,7 +160,7 @@ class CostField { /** * Cost field values. */ - std::unordered_map cost_stamps; + std::vector> cost_stamps; }; } // namespace path