Tools/MeshExtractor: Fixed a mistake in the WorldModelGroup constructor.

This commit is contained in:
Subv
2013-12-29 22:59:23 -05:00
parent 71f856daa6
commit 0a693b1568

View File

@@ -31,7 +31,7 @@ WorldModelGroup::WorldModelGroup(std::string path, int groupIndex) : GroupIndex(
Load(path);
}
WorldModelGroup::WorldModelGroup(Stream* stream, std::string path, int groupIndex)
WorldModelGroup::WorldModelGroup(Stream* stream, std::string path, int groupIndex) : GroupIndex(groupIndex), MOBA(NULL), IsBad(false), HasLiquidData(false)
{
Data = new ChunkedData(stream, stream->GetSize());
Load(path);