Add NAME handling to GameSetting record

openmw-38
Stanislav Bas 10 years ago
parent 09a3358017
commit b2f3ccb080

@ -1,5 +1,7 @@
#include "loadgmst.hpp" #include "loadgmst.hpp"
#include "esmreader.hpp"
#include "esmwriter.hpp"
#include "defs.hpp" #include "defs.hpp"
namespace ESM namespace ESM
@ -8,11 +10,13 @@ namespace ESM
void GameSetting::load (ESMReader &esm) void GameSetting::load (ESMReader &esm)
{ {
mId = esm.getHNString("NAME");
mValue.read (esm, ESM::Variant::Format_Gmst); mValue.read (esm, ESM::Variant::Format_Gmst);
} }
void GameSetting::save (ESMWriter &esm) const void GameSetting::save (ESMWriter &esm) const
{ {
esm.writeHNCString("NAME", mId);
mValue.write (esm, ESM::Variant::Format_Gmst); mValue.write (esm, ESM::Variant::Format_Gmst);
} }

Loading…
Cancel
Save