Skip to content

Commit c6c05f6

Browse files
committed
fix: double pointer that thang
1 parent 48d081f commit c6c05f6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ecsact/runtime/async.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ ECSACT_CORE_API_FN(ecsact_async_request_id, ecsact_async_stream)
214214
int32_t count,
215215
const ecsact_entity_id* entities,
216216
const ecsact_component_id* component_ids,
217-
const void* components_data
217+
const void** components_data
218218
);
219219

220220
#define FOR_EACH_ECSACT_ASYNC_API_FN(fn, ...) \

ecsact/runtime/core.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ ECSACT_CORE_API_FN(ecsact_stream_error, ecsact_stream)
274274
int32_t count,
275275
const ecsact_entity_id* entities,
276276
const ecsact_component_id* component_ids,
277-
const void* components_data
277+
const void** components_data
278278
);
279279

280280
// # BEGIN FOR_EACH_ECSACT_CORE_API_FN

0 commit comments

Comments
 (0)