mirror of
https://github.com/loot/libloot.git
synced 2026-07-27 14:16:01 -07:00
Fixed uninitialised member variable.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user