Fixed uninitialised member variable.

This commit is contained in:
Oliver Hamlet
2015-07-13 09:58:36 +01:00
parent 2d0e31e2d7
commit 8283522c50
+1 -1
View File
@@ -36,7 +36,7 @@
using namespace std;
namespace loot {
PluginLoader::PluginLoader() : _isMaster(false), _crc(0) {}
PluginLoader::PluginLoader() : _isEmpty(true), _isMaster(false), _crc(0) {}
bool PluginLoader::Load(const Game& game, const std::string& name, const bool headerOnly, const bool checkValidityOnly) {
espm::File * file = nullptr;