Skip to content

Commit

Permalink
fix: add missing indexed fields param
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Nov 6, 2024
1 parent 3ebe9f7 commit faa2fae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Source/Ecsact/Public/EcsactUnreal/EcsactAsyncRunner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ auto UEcsactAsyncRunner::StreamImpl(
}
#endif

ecsact_async_stream(Entity, ComponentId, ComponentData);
ecsact_async_stream(Entity, ComponentId, ComponentData, nullptr);
}

auto UEcsactAsyncRunner::Connect( //
Expand Down
2 changes: 1 addition & 1 deletion Source/Ecsact/Public/EcsactUnreal/EcsactSyncRunner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ auto UEcsactSyncRunner::StreamImpl(
return;
}

ecsact_stream(registry_id, Entity, ComponentId, ComponentData);
ecsact_stream(registry_id, Entity, ComponentId, ComponentData, nullptr);
}

auto UEcsactSyncRunner::Tick(float DeltaTime) -> void {
Expand Down

0 comments on commit faa2fae

Please sign in to comment.