Skip to content

Commit

Permalink
fix: double pointer that thang
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Sep 17, 2024
1 parent 194ec18 commit b1e0ebf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ecsact/runtime/async.h
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ ECSACT_CORE_API_FN(ecsact_async_request_id, ecsact_async_stream)
int32_t count,
const ecsact_entity_id* entities,
const ecsact_component_id* component_ids,
const void* components_data
const void** components_data
);

#define FOR_EACH_ECSACT_ASYNC_API_FN(fn, ...) \
Expand Down
2 changes: 1 addition & 1 deletion ecsact/runtime/core.h
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ ECSACT_CORE_API_FN(ecsact_stream_error, ecsact_stream)
int32_t count,
const ecsact_entity_id* entities,
const ecsact_component_id* component_ids,
const void* components_data
const void** components_data
);

// # BEGIN FOR_EACH_ECSACT_CORE_API_FN
Expand Down

0 comments on commit b1e0ebf

Please sign in to comment.