Fixed dirty data not displayed for some plugins.

May fix #289.
This commit is contained in:
Oliver Hamlet
2014-09-24 11:30:25 +01:00
parent 950c88c5ec
commit 7b5847e64c
+5 -3
View File
@@ -372,9 +372,11 @@ namespace loot {
BOOST_LOG_TRIVIAL(trace) << name << ": " << "Number of masters: " << masters.size();
BOOST_LOG_TRIVIAL(trace) << name << ": " << "Getting CRC.";
crc = file->crc;
game.crcCache.insert(pair<string, uint32_t>(boost::locale::to_lower(name), crc));
if (!headerOnly) {
BOOST_LOG_TRIVIAL(trace) << name << ": " << "Getting CRC.";
crc = file->crc;
game.crcCache.insert(pair<string, uint32_t>(boost::locale::to_lower(name), crc));
}
BOOST_LOG_TRIVIAL(trace) << name << ": " << "Getting the FormIDs.";
vector<uint32_t> records = file->getFormIDs();