🎨 Run clang-format

This commit is contained in:
Anders Jenbo 2021-05-07 23:26:39 +02:00
commit 4a7ba94702
14 changed files with 479 additions and 476 deletions

View file

@ -253,7 +253,7 @@ bool path_parent_path(PATHNODE *pPath, int dx, int dy, int sx, int sy)
dxdy->g = next_g;
dxdy->h = path_get_h_cost(dx, dy, sx, sy);
dxdy->f = next_g + dxdy->h;
dxdy->position = {dx,dy};
dxdy->position = { dx, dy };
// add it to the frontier
path_next_node(dxdy);