Skip to content

Commit

Permalink
style(engine): Fix given param in bridge.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
diogomsmiranda committed Feb 10, 2024
1 parent e3f1fb4 commit f2e2e4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/src/scene/bridge.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ bool SceneBridge::loadFromFile(Assets& assets, const AnyAsset& handle, Stream& s

for (const auto& [name, asset] : scene.imports)
{
scene.blueprint.merge(name, assets.read(asset)->blueprint);
scene.blueprint.merge(name, assets.read(asset)->blueprint, true);

Check warning on line 103 in engine/src/scene/bridge.cpp

View check run for this annotation

Codecov / codecov/patch

engine/src/scene/bridge.cpp#L103

Added line #L103 was not covered by tests
}
}

Expand Down

0 comments on commit f2e2e4a

Please sign in to comment.