Skip to content

Commit

Permalink
chore: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelwan committed Sep 16, 2024
1 parent 15752b0 commit d24a153
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions ecsact/runtime/dynamic.h
Original file line number Diff line number Diff line change
Expand Up @@ -509,9 +509,12 @@ ECSACT_DYNAMIC_API_FN(void, ecsact_set_system_notify_component_setting)
ecsact_system_notify_setting setting
);

/**
* Sets a components type
*/
ECSACT_DYNAMIC_API_FN(void, ecsact_set_component_type)
( //
ecsact_component_id comopnent_id,
ecsact_component_id component_id,
ecsact_component_type component_type
);

Expand Down Expand Up @@ -570,7 +573,8 @@ ECSACT_DYNAMIC_API_FN(void, ecsact_set_component_type)
fn(ecsact_system_generates_unset_component, __VA_ARGS__); \
fn(ecsact_set_entity_execution_status, __VA_ARGS__); \
fn(ecsact_set_system_parallel_execution, __VA_ARGS__); \
fn(ecsact_set_system_notify_component_setting, __VA_ARGS__)
fn(ecsact_set_system_notify_component_setting, __VA_ARGS__); \
fn(ecsact_set_component_type, __VA_ARGS__); \

Check failure on line 577 in ecsact/runtime/dynamic.h

View workflow job for this annotation

GitHub Actions / check-module-headers

Out of date FOR_EACH macro for ecsact/runtime/dynamic.h

When adding or removing an Ecsact function from the API headers you must also update the FOR_EACH_ macro.
#endif

#endif // ECSACT_RUNTIME_DYNAMIC_H

0 comments on commit d24a153

Please sign in to comment.