mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Fixed large plugins' names being lowercased.
This commit is contained in:
@@ -695,7 +695,7 @@ namespace loot {
|
||||
BOOST_LOG_TRIVIAL(trace) << "Creating individual loading thread for: " << pluginPair.first;
|
||||
group.create_thread([this, plugin, headersOnly]() {
|
||||
BOOST_LOG_TRIVIAL(trace) << "Loading " << plugin.first->second.Name() << " individually.";
|
||||
plugin.first->second = Plugin(*this, plugin.first->first, headersOnly);
|
||||
plugin.first->second = Plugin(*this, plugin.first->second.Name(), headersOnly);
|
||||
});
|
||||
}
|
||||
else {
|
||||
|
||||
Reference in New Issue
Block a user