Skip to content

Commit

Permalink
fix: add missing index field params
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Sep 17, 2024
1 parent 194848f commit 31c35d5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion ecsact/runtime/async.h
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,8 @@ ECSACT_CORE_API_FN(ecsact_async_request_id, ecsact_async_stream)
( //
ecsact_entity_id entity,
ecsact_component_id component_id,
const void* component_data
const void* component_data,
...
);

#define FOR_EACH_ECSACT_ASYNC_API_FN(fn, ...) \
Expand Down
3 changes: 2 additions & 1 deletion ecsact/runtime/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,8 @@ ECSACT_CORE_API_FN(ecsact_stream_error, ecsact_stream)
ecsact_registry_id registry_id,
ecsact_entity_id entity,
ecsact_component_id component_id,
const void* component_data
const void* component_data,
...
);

// # BEGIN FOR_EACH_ECSACT_CORE_API_FN
Expand Down

0 comments on commit 31c35d5

Please sign in to comment.