Skip to content

Commit fb0ac21

Browse files
author
nitrocaster
committed
Fix unintended local hiding.
1 parent 92c5bb8 commit fb0ac21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/xrAICore/Navigation/vertex_path_inline.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ inline void CVertexPathBuilder::get_node_path(xr_vector<Index> &path, Vertex *be
4444
{
4545
Vertex *t1 = best, *t2 = best->back();
4646
u32 i;
47-
for (u32 i = 1; t2; t1 = t2, t2 = t2->back(), i++);
47+
for (i = 1; t2; t1 = t2, t2 = t2->back(), i++);
4848
path.resize(i);
4949
t1 = best;
5050
path[--i] = best->index();

0 commit comments

Comments
 (0)