1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-20 14:23:53 +00:00

Merge branch 'fix_reserved_nodes' into 'master'

Add missing non-prefixed reserved nodes

See merge request OpenMW/openmw!2414

(cherry picked from commit cd8b20439e)

ac01fd5e Add missing non-prefixed reserved nodes
This commit is contained in:
psi29a 2022-09-16 11:45:03 +00:00
parent 9bed210e4e
commit 847e2bbeaf

View file

@ -665,10 +665,11 @@ namespace Resource
}; };
std::vector<std::string> result; std::vector<std::string> result;
result.reserve(std::size(names)); result.reserve(2 * std::size(names));
for (std::string_view name : names) for (std::string_view name : names)
{ {
result.emplace_back(name);
std::string prefixedName("Tri "); std::string prefixedName("Tri ");
prefixedName += name; prefixedName += name;
result.push_back(std::move(prefixedName)); result.push_back(std::move(prefixedName));