From 31c35d54f69d740c8f868de43144524895e5c0dd Mon Sep 17 00:00:00 2001 From: Ezekiel Warren Date: Mon, 16 Sep 2024 17:50:32 -0700 Subject: [PATCH] fix: add missing index field params --- ecsact/runtime/async.h | 3 ++- ecsact/runtime/core.h | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ecsact/runtime/async.h b/ecsact/runtime/async.h index c9684280..5e0757c9 100644 --- a/ecsact/runtime/async.h +++ b/ecsact/runtime/async.h @@ -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, ...) \ diff --git a/ecsact/runtime/core.h b/ecsact/runtime/core.h index d4c08f63..ab7ff791 100644 --- a/ecsact/runtime/core.h +++ b/ecsact/runtime/core.h @@ -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