1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-30 06:15:32 +00:00

fixed save function of SavedGame record

This commit is contained in:
Marc Zinnschlag 2013-11-25 12:59:40 +01:00
parent 55544e931c
commit 1ecadccb28

View file

@ -33,6 +33,6 @@ void ESM::SavedGame::save (ESMWriter &esm) const
for (std::vector<std::string>::const_iterator iter (mContentFiles.begin());
iter!=mContentFiles.end(); ++iter)
esm.writeHNCString (*iter, "DEPE");
esm.writeHNCString ("DEPE", *iter);
}