forked from mirror/openmw-tes3mp
Fix some formatting.
This commit is contained in:
parent
545c3c312c
commit
8e55eb8009
1 changed files with 21 additions and 20 deletions
|
@ -8,8 +8,8 @@ namespace ESM
|
|||
{
|
||||
unsigned int Clothing::sRecordId = REC_CLOT;
|
||||
|
||||
void Clothing::load(ESMReader &esm)
|
||||
{
|
||||
void Clothing::load(ESMReader &esm)
|
||||
{
|
||||
mModel = esm.getHNString("MODL");
|
||||
mName = esm.getHNOString("FNAM");
|
||||
esm.getHNT(mData, "CTDT", 12);
|
||||
|
@ -21,9 +21,10 @@ void Clothing::load(ESMReader &esm)
|
|||
|
||||
|
||||
mEnchant = esm.getHNOString("ENAM");
|
||||
}
|
||||
void Clothing::save(ESMWriter &esm) const
|
||||
{
|
||||
}
|
||||
|
||||
void Clothing::save(ESMWriter &esm) const
|
||||
{
|
||||
esm.writeHNCString("MODL", mModel);
|
||||
esm.writeHNOCString("FNAM", mName);
|
||||
esm.writeHNT("CTDT", mData, 12);
|
||||
|
@ -34,7 +35,7 @@ void Clothing::save(ESMWriter &esm) const
|
|||
mParts.save(esm);
|
||||
|
||||
esm.writeHNOCString("ENAM", mEnchant);
|
||||
}
|
||||
}
|
||||
|
||||
void Clothing::blank()
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue