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 18, 2024
1 parent 48d081f commit c6c05f6
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 @@ -214,7 +214,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 @@ -274,7 +274,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 c6c05f6

Please sign in to comment.