Starting ESS importer for Morrowind save files

This commit is contained in:
scrawl 2015-01-17 00:11:36 +01:00
parent fc663addfa
commit 031eec4550
24 changed files with 1160 additions and 11 deletions

View file

@ -111,6 +111,11 @@ void Cell::loadData(ESMReader &esm)
}
esm.getHNT(mData, "DATA", 12);
// ess only, unknown
char nam8[32];
if (esm.isNextSub("NAM8"))
esm.getHExact(nam8, 32);
}
void Cell::postLoad(ESMReader &esm)