diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test_astar.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_astar.h b/tests/test_astar.h index 12664a5ff1..137c477946 100644 --- a/tests/test_astar.h +++ b/tests/test_astar.h @@ -63,7 +63,7 @@ public: } // Disable heuristic completely. - float _compute_cost(int p_from, int p_to) { + real_t _compute_cost(int p_from, int p_to) { if (p_from == A && p_to == C) { return 1000; } |