Skip to content

Commit

Permalink
Rename ecs_get_fullpath_buf to ecs_get_path_buf
Browse files Browse the repository at this point in the history
This makes it match the rename of `ecs_get_fullpath`.
  • Loading branch information
waywardmonkeys authored and SanderMertens committed Jul 10, 2024
1 parent 1004aa5 commit cca1f28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion flecs.h
Original file line number Diff line number Diff line change
Expand Up @@ -9656,7 +9656,7 @@ int ecs_value_move_ctor(
#define ecs_get_path(world, child)\
ecs_get_path_w_sep(world, 0, child, ".", NULL)

#define ecs_get_fullpath_buf(world, child, buf)\
#define ecs_get_path_buf(world, child, buf)\
ecs_get_path_w_sep_buf(world, 0, child, ".", NULL, buf)

#define ecs_new_from_path(world, parent, path)\
Expand Down
2 changes: 1 addition & 1 deletion include/flecs/addons/flecs_c.h
Original file line number Diff line number Diff line change
Expand Up @@ -577,7 +577,7 @@
#define ecs_get_path(world, child)\
ecs_get_path_w_sep(world, 0, child, ".", NULL)

#define ecs_get_fullpath_buf(world, child, buf)\
#define ecs_get_path_buf(world, child, buf)\
ecs_get_path_w_sep_buf(world, 0, child, ".", NULL, buf)

#define ecs_new_from_path(world, parent, path)\
Expand Down

0 comments on commit cca1f28

Please sign in to comment.