Fixed large plugins' names being lowercased.

This commit is contained in:
WrinklyNinja
2014-08-19 21:55:47 +01:00
parent 5c5e9b7ef2
commit 92da88d99a
+1 -1
View File
@@ -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 {